import type { Metadata } from 'next'; import { Inter, Caveat } from 'next/font/google'; import Image from 'next/image'; import { Footer } from '@/components/shared/Footer'; import './globals.css'; const inter = Inter({ variable: '--font-inter', subsets: ['latin'], display: 'swap', }); const caveat = Caveat({ variable: '--font-caveat', subsets: ['latin'], weight: ['500', '600', '700'], display: 'swap', }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{/* Animated gradient background */}
{/* Header */}
{/* Page content */} {children}
); }