From 0b42e06ddda04469f46e7c919ee8c4e664a1a2d7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 15:06:58 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..e08b555 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "F.C Trading Academy | Learn Profitable Trading", + description: "Master forex, crypto, and stock trading with expert mentors. Join 500+ successful traders earning consistent profits through proven strategies and personalized mentorship.", + keywords: "learn forex trading, trading academy, online trading course, forex mentorship, crypto trading training, stock market education", + metadataBase: new URL("https://fctrading.academy"), + alternates: { + canonical: "https://fctrading.academy", + }, + openGraph: { + title: "F.C Trading Academy | Learn Profitable Trading", + description: "Master forex, crypto, and stock trading with expert mentors. Join 500+ successful traders earning consistent profits through proven strategies.", + siteName: "F.C Trading Academy", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/gradient-dashboard-template-user-panel_23-2148378209.jpg", + alt: "F.C Trading Academy", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "F.C Trading Academy | Learn Profitable Trading", + description: "Master forex, crypto, and stock trading with expert mentors. Join 500+ successful traders.", + images: [ + "http://img.b2bpic.net/free-vector/gradient-dashboard-template-user-panel_23-2148378209.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +65,9 @@ export default function RootLayout({ return ( - + {children}