From 44b7d8c8b10c47e74b26311e85d9c61feb238e67 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 12:45:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++------------------------------------- 1 file changed, 8 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f7c496..d617aed 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans, Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Day Trading Course | $7M+ Profits Strategy", description: "Learn day trading from a professional trader with 10 years experience and $7+ million in verified profits. Master risk management, technical analysis, and trading psychology.", keywords: "day trading course, trading education, day trader, trading strategies, forex trading, stock trading, trading psychology, risk management", metadataBase: new URL("https://tradevault.io"), - alternates: { - canonical: "https://tradevault.io" - }, - openGraph: { - title: "Day Trading Course | Professional Trading Strategies", description: "Master day trading strategies from a pro trader. 10 years experience, $7M+ in profits. Join 5,000+ successful traders.", url: "https://tradevault.io", siteName: "TradeVault", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Day Trading Course | Master Professional Trading Strategies", description: "Learn from a professional day trader with $7M+ in verified profits. Join our comprehensive trading education program." - }, - robots: { - index: true, - follow: true - } -}; + title: "TradeVault - Day Trading Mastery", description: "Master proven day trading strategies and turn trading expertise into consistent profits"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}