Skip to content

Commit

Permalink
feat(page): create /guestbook page
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Jan 23, 2024
1 parent 91d0cec commit 9e170a6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/app/guestbook/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { GiscusComments } from '@/shared/components/giscus-comments'
import { Title } from '@/shared/components/title'
import { Metadata } from 'next'

export const metadata: Metadata = {
title: 'Guestbook',
description:
'A guestbook where you can leave your precious message for me and also see all old messages',
openGraph: {
title: 'Guestbook',
description:
'A guestbook where you can leave your precious message for me and also see all old messages'
}
}

export default function Page() {
return (
<div className="content-vertical-spaces content-container m-auto space-y-10 md:space-y-4">
<Title text="Guestbook" />
<div>
<GiscusComments
category="Show and tell"
categoryId="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMyNzg0MzYw"
reactionsEnabled="0"
inputPosition="top"
mapping="specific"
term="Guestbook"
transparentDark={false}
/>
</div>
</div>
)
}

0 comments on commit 9e170a6

Please sign in to comment.