mirror of
https://github.com/smyalygames/anthonyberg-website.git
synced 2025-05-18 06:04:12 +02:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
const meta = {
|
|
title: 'Anthony Berg Portfolio',
|
|
description: 'My own personal portfolio including for my own projects related to computer science',
|
|
image: 'https://assets.vercel.com/image/upload/q_auto/front/vercel/dps.png',
|
|
}
|
|
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<meta name="robots" content="follow, index" />
|
|
<meta name="description" content={meta.description} />
|
|
<meta property="og:site_name" content={meta.title} />
|
|
<meta property="og:description" content={meta.description} />
|
|
<meta property="og:title" content={meta.title} />
|
|
<meta property="og:image" content={meta.image} />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@yourname" />
|
|
<meta name="twitter:title" content={meta.title} />
|
|
<meta name="twitter:description" content={meta.description} />
|
|
<meta name="twitter:image" content={meta.image} />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|