39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import "@/styles/globals.css";
|
|
import PlausibleProvider from "next-plausible";
|
|
import { type Metadata } from "next";
|
|
import { Geist } from "next/font/google";
|
|
import { WebVitals } from "./components/web-vitals";
|
|
|
|
export const metadata: Metadata = {
|
|
title:
|
|
"InvestingFIRE Calculator | Plan Your Financial Independence & Early Retirement",
|
|
description:
|
|
"Achieve Financial Independence, Retire Early (FIRE) with the InvestingFIRE calculator. Get personalized projections and investing advice to plan your journey.",
|
|
};
|
|
|
|
const geist = Geist({
|
|
subsets: ["latin"],
|
|
variable: "--font-geist-sans",
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" className={geist.variable}>
|
|
<head>
|
|
<meta name="apple-mobile-web-app-title" content="FIRE" />
|
|
<PlausibleProvider
|
|
domain="investingfire.com"
|
|
customDomain="https://analytics.schulze.network"
|
|
selfHosted={true}
|
|
enabled={true}
|
|
trackOutboundLinks={true}
|
|
/>
|
|
</head>
|
|
<WebVitals />
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|