diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8a9fbb..338312c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "CryptoTrade - Professional Cryptocurrency Trading Platform", description: "Trade Bitcoin, Ethereum, and 140+ cryptocurrencies with advanced tools, bank-grade security, and lightning-fast execution. Join 2.5M traders worldwide.", keywords: "cryptocurrency trading, bitcoin trading, crypto exchange, digital assets, forex trading platform", metadataBase: new URL("https://cryptotrade.com"), - alternates: { - canonical: "https://cryptotrade.com"}, - openGraph: { - title: "CryptoTrade - Professional Cryptocurrency Trading", description: "Trade crypto with confidence. Advanced analytics, real-time data, and secure platform.", url: "https://cryptotrade.com", siteName: "CryptoTrade", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZCcGC3uDNDL3vax9s8zbwxOip/a-sophisticated-cryptocurrency-trading-d-1772790894586-cdb57ca6.png", alt: "CryptoTrade Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CryptoTrade - Professional Cryptocurrency Trading", description: "Trade 140+ cryptocurrencies with advanced tools and bank-grade security.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZCcGC3uDNDL3vax9s8zbwxOip/a-sophisticated-cryptocurrency-trading-d-1772790894586-cdb57ca6.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CryptoTrade - Professional Cryptocurrency Trading", description: "Trade cryptocurrencies with confidence. Real-time market data, advanced charting tools, and lightning-fast execution."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +