From f6ef58b0b34ad84689ba1a935b80590ce9d51ce5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:52:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 10 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 989b2e3..3283cc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1444 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Lora, Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", +const lora = Lora({ subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); + display: "swap", variable: "--font-lora"}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); + display: "swap", variable: "--font-inter"}); export const metadata: Metadata = { - title: "Hyget FX | Master Forex Trading Strategies & Education", - description: "Learn professional forex trading with Hyget FX. Master trend following, breakout strategies, mean reversion, and news trading. Join 5,000+ successful traders.", - keywords: "forex trading, trading strategies, forex education, trading courses, technical analysis, economic calendar, position calculator, trading psychology", - metadataBase: new URL("https://hygetfx.com"), - alternates: { - canonical: "https://hygetfx.com", - }, - openGraph: { - title: "Hyget FX | Master Forex Trading Strategies", - description: "Comprehensive forex trading education: 4 core strategies, live tools, and a supportive trader community. Start your trading mastery journey today.", - url: "https://hygetfx.com", - siteName: "Hyget FX", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acx2klWfY9fD7kJrRFJTCAWyYj/a-professional-trading-platform-dashboar-1772905562970-3a449c81.png", - alt: "Hyget FX Trading Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Hyget FX | Master Forex Trading", - description: "Professional trading education with 4 core strategies, live tools, and community support.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acx2klWfY9fD7kJrRFJTCAWyYj/a-professional-trading-platform-dashboar-1772905562970-3a449c81.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hyget FX | Professional Trading Education", description: "Master Forex trading with comprehensive courses and proven strategies"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -