28 lines
763 B
TypeScript
28 lines
763 B
TypeScript
import "@/styles/globals.css";
|
|
|
|
import { type Metadata } from "next";
|
|
import { Geist } from "next/font/google";
|
|
|
|
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.",
|
|
icons: [{ rel: "icon", url: "/favicon.ico" }],
|
|
};
|
|
|
|
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}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|