This commit is contained in:
2025-04-29 18:33:19 +02:00
parent 97fa489d6c
commit 6018239c43
5 changed files with 619 additions and 4 deletions

View File

@ -4,8 +4,10 @@ import { type Metadata } from "next";
import { Geist } from "next/font/google";
export const metadata: Metadata = {
title: "Create T3 App",
description: "Generated by create-t3-app",
title:
"FIRE Calculator - Plan Your Financial Independence & Early Retirement",
description:
"Calculate your FIRE number, estimate your retirement age, and plan your path to financial independence with this comprehensive FIRE calculator.",
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
@ -18,7 +20,7 @@ export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en" className={`${geist.variable}`}>
<html lang="en" className={geist.variable}>
<body>{children}</body>
</html>
);