From d4886b7e7f3cbbc1f42428b713a9116dbe683779 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:35:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 -------------------------------------------- 1 file changed, 1420 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 286cec2..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "TradeTracker - Professional Trading Journal with Local Storage", description: "Track every trade with TradeTracker. Clean, animated trading journal with local storage, real-time analytics, and responsive design for serious traders.", keywords: "trading journal, trade tracker, trading analysis, performance metrics, local storage, trader tools", metadataBase: new URL("https://tradetracker.io"), - alternates: { - canonical: "https://tradetracker.io"}, - openGraph: { - title: "TradeTracker - Your Professional Trading Journal", description: "Track, analyze, and improve your trading performance with our clean, animated trading journal.", url: "https://tradetracker.io", siteName: "TradeTracker", type: "website"}, - twitter: { - card: "summary_large_image", title: "TradeTracker - Professional Trading Journal", description: "Track every trade with real-time analytics and local storage persistence."}, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -