diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e576d5f..65ec5d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,32 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Trade with Ease - Learn Forex, Crypto, & Stock Trading", - description: "Master trading with interactive lessons, paper trading simulator, and expert courses. Learn forex, candlestick patterns, risk management, crypto trading, technical analysis, and stock market basics.", - keywords: "trading education, forex trading, crypto trading, technical analysis, stock trading, risk management, candlestick patterns, paper trading simulator, trading courses", - metadataBase: new URL("https://tradewithease.com"), - alternates: { - canonical: "https://tradewithease.com", - }, - openGraph: { - title: "Trade with Ease - Learn Trading from Basics to Advanced", - description: "Interactive trading education platform with paper simulator, real-time lessons, and professional courses.", - url: "https://tradewithease.com", - siteName: "Trade with Ease", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQxD9eiHViVZvAURUrlHdTerQJ/a-modern-sleek-trading-dashboard-interfa-1772579752422-c15395dc.png", - alt: "Trade with Ease - Trading Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Trade with Ease - Learn Trading Online", - description: "Master forex, crypto, stocks, and technical analysis with our comprehensive trading education platform.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQxD9eiHViVZvAURUrlHdTerQJ/a-modern-sleek-trading-dashboard-interfa-1772579752422-c15395dc.png", - ], - }, - robots: { - index: true, - follow: true, - }, + title: 'Trade with Ease - Learn Trading', + description: 'Master forex, crypto, stocks, and technical analysis with interactive lessons and paper trading simulator', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +