import "@/styles/globals.css"; import PlausibleProvider from "next-plausible"; import { type Metadata, type Viewport } from "next"; import { Geist } from "next/font/google"; import { WebVitals } from "./components/web-vitals"; export const viewport: Viewport = { themeColor: [{ color: "oklch(0.97 0.0228 95.96)" }], }; export const metadata: Metadata = { title: "InvestingFIRE | Finance and Retirement Calculator", description: "Achieve Financial Independence & Early Retirement! Plan your FIRE journey with the InvestingFIRE calculator and get personalized projections in buttersmooth graphs.", }; const geist = Geist({ subsets: ["latin"], variable: "--font-geist-sans", }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (