This commit is contained in:
HugeFrog24
2025-01-15 04:47:14 +01:00
parent d438ee3e4f
commit 1edd996336
4 changed files with 88 additions and 4 deletions

View File

@@ -1,15 +1,36 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { ThemeProvider } from './providers/ThemeProvider'
import { appConfig } from './config/app'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Shake the Frog',
description: 'A fun interactive frog that reacts to shaking!',
title: appConfig.name,
description: appConfig.description,
icons: {
icon: '/images/frog.svg'
icon: appConfig.assets.favicon
},
openGraph: {
title: appConfig.name,
description: appConfig.description,
url: appConfig.url,
siteName: appConfig.name,
images: [{
url: '/api/og',
width: appConfig.assets.ogImage.width,
height: appConfig.assets.ogImage.height,
alt: `${appConfig.name} preview`
}],
locale: 'en_US',
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: appConfig.name,
description: appConfig.description,
images: ['/api/og']
}
}