import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "The Link | Move. Own. Evolve.", description: "AI-powered electric mobility meets tokenized infrastructure ownership. Transforming rural America through clean energy and autonomous transportation.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }