From 64100be3645610848cbc444cefdf58023ffeb7da Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 01:24:32 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..647a8b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,50 @@ 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 "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "FinanceAI - Learn Finance Online | Courses, Lessons & Quizzes", + description: "Master finance with interactive courses, video lessons, smart flashcards, and adaptive quizzes. Perfect for students learning investing, trading, and personal finance.", + keywords: "finance education, online courses, learn investing, financial literacy, trading courses, personal finance", + openGraph: { + title: "FinanceAI - Master Finance with Interactive Learning", + description: "Interactive finance education platform with courses, lessons, flashcards, and quizzes for students.", + url: "https://financeai.com", + siteName: "FinanceAI", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "FinanceAI - Learn Finance Online", + description: "Master finance through interactive courses and adaptive learning tools.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +53,9 @@ export default function RootLayout({ return ( - + {children}