diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..39683d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,39 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "TradeX - Professional Trading Platform", + description: "Access global markets with advanced trading tools. Trade stocks, crypto, ETFs, indices, and forex on a professional-grade platform. Real-time charts, AI analytics, and commission-free trading.", + keywords: "trading platform, stock trading, cryptocurrency trading, fintech, online brokerage, investment platform, trading tools, market analysis", + metadataBase: new URL("https://tradex.financial"), + alternates: { + canonical: "https://tradex.financial", + }, + openGraph: { + title: "TradeX - Professional Trading Platform", + description: "Trade global markets with advanced tools and real-time analytics", + url: "https://tradex.financial", + siteName: "TradeX", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BH6VH87GQCO0UyZeTWFB8B7OoY/a-sleek-dark-theme-trading-dashboard-sho-1774133829974-78850f99.png", + alt: "TradeX Trading Platform Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TradeX - Professional Trading Platform", + description: "Advanced trading tools for global markets", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BH6VH87GQCO0UyZeTWFB8B7OoY/a-sleek-dark-theme-trading-dashboard-sho-1774133829974-78850f99.png"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}