From af40a1a033e488d5a02bc88ccfe2867794707e0b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:33:43 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b07fb96..045aca3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -175,7 +175,7 @@ export default function AboutPage() { quote: "Global Pathways has been instrumental in expanding our international student enrollment. Their professional approach, attention to detail, and genuine commitment to student success sets them apart from other recruitment agencies.", tag: "Korean University", avatarSrc: "http://img.b2bpic.net/free-photo/black-female-bank-manager-using-laptop-writing-notes-while-having-meeting-with-couple-office_637285-930.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/people-registering-vote-united-states_23-2149096716.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-registering-vote-united-states_23-2149096716.jpg?_wi=2", }, { id: "2", @@ -185,7 +185,7 @@ export default function AboutPage() { quote: "What impressed us most is their extensive global network and local market knowledge. They understand student needs across different regions and deliver qualified candidates who are well-prepared for Korean university life.", tag: "Education Agency", avatarSrc: "http://img.b2bpic.net/free-photo/black-female-bank-manager-using-laptop-writing-notes-while-having-meeting-with-couple-office_637285-930.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-green-card-application_23-2149601348.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-green-card-application_23-2149601348.jpg?_wi=2", }, { id: "3", @@ -195,7 +195,7 @@ export default function AboutPage() { quote: "Working with Global Pathways has significantly streamlined our international recruitment process. Their support extends beyond recruitment to ongoing student management, making them true partners in our mission.", tag: "University Administration", avatarSrc: "http://img.b2bpic.net/free-photo/black-female-bank-manager-using-laptop-writing-notes-while-having-meeting-with-couple-office_637285-930.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/happy-graduate-student-with-diploma_23-2148498974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-graduate-student-with-diploma_23-2148498974.jpg?_wi=2", }, ]} textboxLayout="default" From 698febdabab635e9a369608eebfd1b41fdf1703b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:33:43 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 11 deletions(-) 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}