refactor(about): change greeting in first paragraph

This commit is contained in:
Anthony Berg 2023-11-14 17:03:03 +00:00
parent 362bf044d9
commit a3934ff97d

View File

@ -1,4 +1,5 @@
import { Html, Head, Main, NextScript } from 'next/document'
import { Analytics } from '@vercel/analytics/react';
export default function Document() {
const meta = {
@ -25,6 +26,7 @@ export default function Document() {
<body>
<Main />
<NextScript />
<Analytics />
</body>
</Html>
)