From da14c1549f82d1218351a5dd64293095d7061e9a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:25:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++++++--------------------------------- 1 file changed, 13 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc77cdd..8fe68c0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", 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: "fx_mali | Premium Forex Trading Strategies & Community", description: "Master forex trading with fx_mali's proven strategies, real-time insights, and community support. Learn consistent profitable trading on TikTok.", keywords: "forex trading, trading strategies, currency trading, market analysis, trading education", metadataBase: new URL("https://fx-mali-trading.com"), - alternates: { - canonical: "https://fx-mali-trading.com" - }, - openGraph: { - title: "fx_mali Trading | Master Forex with Proven Strategies", description: "Join 1000+ traders learning from fx_mali's premium trading methodology. Real results, clear strategies, proven success.", url: "https://fx-mali-trading.com", siteName: "fx_mali Trading", type: "website" - }, - twitter: { - card: "summary_large_image", title: "fx_mali | Forex Trading Excellence", description: "Premium trading strategies and insights for consistent profits" - }, - robots: { - index: true, - follow: true - } -}; + title: "fx_mali Trading", description: "Master forex trading with proven strategies and real-time insights"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +