28 lines
688 B
TypeScript
28 lines
688 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Geist } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const geist = Geist({ subsets: ['latin'], variable: '--font-geist-sans' })
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'MulliganMates',
|
|
description: 'Social golf score tracking',
|
|
icons: {
|
|
icon: '/favicon.png',
|
|
apple: '/icons/apple-touch-icon.png',
|
|
},
|
|
appleWebApp: {
|
|
capable: true,
|
|
statusBarStyle: 'default',
|
|
title: 'MulliganMates',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${geist.variable} font-sans antialiased`}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|