Initial commit v1

This commit is contained in:
Rolf
2026-03-18 12:39:48 +01:00
parent 4897d3003f
commit cb04bf2ab8
12 changed files with 147 additions and 29 deletions
+19 -26
View File
@@ -1,34 +1,27 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import type { Metadata } from 'next'
import { Geist } from 'next/font/google'
import './globals.css'
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
const geist = Geist({ subsets: ['latin'], variable: '--font-geist-sans' })
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
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,
}: Readonly<{
children: React.ReactNode;
}>) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
<body className={`${geist.variable} font-sans antialiased`}>{children}</body>
</html>
);
)
}