diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0798f07..e7ebac3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TradeAI - AI Day Trading Platform for Smarter Trades", description: "Trade smarter with TradeAI's AI-powered signals. Get real-time buy/sell recommendations and optimal timing. Join 25K+ traders improving their ROI.", keywords: "AI trading, day trading platform, trading signals, algorithmic trading, fintech, stock trading AI", metadataBase: new URL("https://tradeai.com"), - alternates: { - canonical: "https://tradeai.com"}, - openGraph: { - title: "TradeAI - AI Day Trading Platform", description: "Experience intelligent trading with real-time AI signals. 94% accuracy. Free 14-day trial.", url: "https://tradeai.com", siteName: "TradeAI", type: "website"}, - twitter: { - card: "summary_large_image", title: "TradeAI - Smart Trading Signals", description: "AI-powered day trading platform with 94% signal accuracy"}, - robots: { - index: true, - follow: true, - }, -}; + title: "TradeAI - AI-Powered Trading Signals", description: "Experience intelligent trading with AI-generated signals. Join thousands of successful day traders using advanced machine learning analysis."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -