// app/layout.tsx // Root layout with navbar and footer (like Laravel layouts!) import type { Metadata } from "next"; import Navbar from "@/components/navbar"; import InteractiveTopo from "@/components/interactiveTopo"; import "./globals.css"; export const metadata: Metadata = { title: "OpenWheels Racing", description: "Free racing community - Live dashboard and rankings", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (