Skip to content

Commit

Permalink
Migrate cv page to app
Browse files Browse the repository at this point in the history
  • Loading branch information
bluprince13 committed May 27, 2024
1 parent 7ffdcd9 commit 0057172
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/pages/cv.js → src/app/cv/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ import Link from 'next/link'

import { MyComments } from '@Components/Comments'
import Title from '@Components/Title'
import StandardSeo from '@Components/StandardSeo'
import { generateMetadata } from '@Modules/metadata'

export const metadata = generateMetadata({
pageTitle: 'CV',
description: 'My CV',
path: '/cv'
})

const CV = () => (
<>
<StandardSeo pageTitle="CV" description="My CV" path="/cv" />
<Title title="CV" />
<br />
<Typography variant="body1">
Expand Down

1 comment on commit 0057172

@vercel
Copy link

@vercel vercel bot commented on 0057172 May 27, 2024

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.