Files
thrilltrack-explorer/app/layout.tsx

26 lines
641 B
TypeScript

import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
import { AuthProvider } from '@/lib/contexts/AuthContext';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'ThrillWiki - Roller Coaster Database',
description: 'Comprehensive database of theme parks, roller coasters, and attractions worldwide',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);
}