diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..87c3acb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,48 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } 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 { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Global Pathways - International Student Recruitment for Korean Universities", + description: "Connect qualified international students with Korean universities. 600+ students recruited from 33 countries with capability in 91 markets. Strategic partnerships & comprehensive support.", + keywords: "international student recruitment, Korean universities, education partnership, global recruitment network, student visa support", + metadataBase: new URL("https://globalpathways.example.com"), + alternates: { + canonical: "https://globalpathways.example.com", + }, + openGraph: { + title: "Global Pathways - Your International Student Recruitment Partner", + description: "Recruit qualified international students to Korean universities through our global network spanning 33 countries with capability in 91 markets.", + url: "https://globalpathways.example.com", + siteName: "Global Pathways", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Global Pathways - International Student Recruitment", + description: "Connect international students with Korean universities. 600+ placements, 33 countries reached.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +51,9 @@ export default function RootLayout({ return ( - + {children}