Skip to content

Commit

Permalink
chore: update speaking page (#1923)
Browse files Browse the repository at this point in the history
* chore: update speaking page

* try to resolve lint error on ci

* fix: move appearance inside speaking section
  • Loading branch information
alessbell authored Nov 6, 2023
1 parent ec28888 commit 5d23c2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 3 additions & 5 deletions src/pages/speaking.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,14 @@ export default function Speaking() {
</Head>
<SimpleLayout title="A few talks I've given">
<div className="space-y-20">
<SpeakingSection title="Upcoming">
<SpeakingSection title="Past">
<Appearance
title="How to Use Suspense and GraphQL with Apollo to Build Great User Experiences"
event="React Advanced London 2023"
description="The Apollo Client team will show you how we built a non-trivial app using Apollo Client’s new Suspense features and GraphQL features like the @defer directive."
href="https://reactadvanced.com/"
cta="View React Advanced site"
href="https://portal.gitnation.org/contents/how-to-use-suspense-and-graphql-with-apollo-to-build-great-user-experiences"
cta="Watch video"
/>
</SpeakingSection>
<SpeakingSection title="Past">
<Appearance
title="Query Now, Render Later: Leveraging @defer for Efficient Data Delivery"
event="GraphQL Summit 2023"
Expand Down
5 changes: 3 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
const { fontFamily } = require('tailwindcss/defaultTheme')
// const { fontFamily } = require('tailwindcss/defaultTheme')
import { fontFamily } from 'tailwindcss/defaultTheme'

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx}'],
darkMode: 'class',
plugins: [require('@tailwindcss/typography')],
plugins: ['@tailwindcss/typography'],
theme: {
fontSize: {
xs: ['0.8125rem', { lineHeight: '1.5rem' }],
Expand Down

1 comment on commit 5d23c2d

@vercel
Copy link

@vercel vercel bot commented on 5d23c2d Nov 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.