38 lines
980 B
TypeScript
38 lines
980 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Primeira Liga Stats - Live Football Statistics',
|
|
description: 'Real-time statistics, standings, and scores for Portuguese Primeira Liga',
|
|
icons: {
|
|
icon: '/favicon.svg',
|
|
shortcut: '/favicon.svg',
|
|
},
|
|
metadataBase: new URL(process.env.NEXTAUTH_URL ?? 'http://localhost:3000'),
|
|
openGraph: {
|
|
title: 'Primeira Liga Stats',
|
|
description: 'Real-time statistics for Portuguese Primeira Liga',
|
|
images: ['/og-image.png'],
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<script src="https://apps.abacus.ai/chatllm/appllm-lib.js"></script>
|
|
</head>
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|