Skip to content

Commit

Permalink
downgrade next
Browse files Browse the repository at this point in the history
  • Loading branch information
Ismailtlem committed Jul 28, 2024
1 parent cae7701 commit 3d36d2d
Show file tree
Hide file tree
Showing 4 changed files with 16,082 additions and 8,194 deletions.
4 changes: 2 additions & 2 deletions app/resume/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import ResumeLayout from '@/layouts/ResumeLayout'
import { genPageMetadata } from 'app/seo'
import { allResumes } from 'contentlayer/generated'
import { MDXLayoutRenderer } from 'pliny/mdx-components'
import { coreContent } from 'pliny/utils/contentlayer'
import { coreContent, MDXDocument } from 'pliny/utils/contentlayer'

export const metadata = genPageMetadata({ title: 'Resume' })

export default function Page() {
const resume = allResumes.find((p) => p.slug === 'resume')
const resume: MDXDocument = allResumes.find((p) => p.slug === 'resume')
const mainContent = coreContent(resume)

return (
Expand Down
Loading

0 comments on commit 3d36d2d

Please # to comment.