Files
MulliganMates/app/layout.tsx
T
2026-03-18 12:39:48 +01:00

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>
)
}