Files
Tarokka/app/layout.tsx
Gavin McDonald 62c3b7b557 clean up fonts
2025-07-08 07:52:43 -04:00

35 lines
810 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from 'next';
import { Eagle_Lake } from 'next/font/google';
import { AppProvider } from '@/app/AppContext';
import './globals.css';
const eagleLake = Eagle_Lake({
variable: '--font-eagle-lake',
subsets: ['latin'],
weight: '400',
});
export const metadata: Metadata = {
title: 'Tarokka',
description: 'Fortune telling for D&Ds Curse of Strahd',
metadataBase: new URL('https://tarokka.app'),
appleWebApp: {
title: 'Tarokka',
statusBarStyle: 'black-translucent',
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${eagleLake.variable} antialiased`}>
<body className={`${eagleLake.className} antialiased`}>
<AppProvider>{children}</AppProvider>
</body>
</html>
);
}