From 06df58de2b07e272d26cabd2d4f49eb6822fd20b Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Fri, 2 May 2025 18:55:05 +0200 Subject: [PATCH] fix plausible provider and favicon declaration --- src/app/layout.tsx | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3321324..f097b00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,7 +9,6 @@ export const metadata: Metadata = { "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({ @@ -24,17 +23,16 @@ export default function RootLayout({ + - - - {children} - + + {children} ); }