diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 173d22f..2790a85 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -72,7 +72,7 @@ export default function AboutPage() { id: "1", title: "Expert Native Speakers", description: "Our instructors are fluent native speakers with advanced degrees in linguistics and extensive teaching experience across multiple proficiency levels.", - imageSrc: "http://img.b2bpic.net/free-photo/manager-leading-brainstorming-meeting-with-group-creative-designers-office-leader-business-concept_58466-12410.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/manager-leading-brainstorming-meeting-with-group-creative-designers-office-leader-business-concept_58466-12410.jpg?_wi=2", imageAlt: "Expert language instructor" }, { @@ -86,14 +86,14 @@ export default function AboutPage() { id: "3", title: "Proven Learning Outcomes", description: "Our students consistently achieve their language goals, whether for business, academic, cultural, or personal enrichment. We track progress meticulously and adapt our methods accordingly.", - imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-using-laptop-together-home-sofa_23-2149342434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-using-laptop-together-home-sofa_23-2149342434.jpg?_wi=2", imageAlt: "Learning outcomes tracking" }, { id: "4", title: "Community & Accountability", description: "We've built a supportive community where students learn together, share cultural insights, celebrate achievements, and hold each other accountable to their language goals.", - imageSrc: "http://img.b2bpic.net/free-photo/social-integration-working-team_23-2149341085.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/social-integration-working-team_23-2149341085.jpg?_wi=2", imageAlt: "Community learning" } ]} @@ -123,7 +123,7 @@ export default function AboutPage() { quote: "Before Lusanah, I was intimidated by Arabic. Now I'm confident holding business meetings in Arabic and exploring literature in the original language. This transformation happened because my instructors believed in me.", name: "Amira Hassan", role: "Business Professional", - imageSrc: "http://img.b2bpic.net/free-photo/image-handsome-caucasian-man-party-suit-smiling-pleased-attend-formal-event-standing-whit_1258-154888.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/image-handsome-caucasian-man-party-suit-smiling-pleased-attend-formal-event-standing-whit_1258-154888.jpg?_wi=2", imageAlt: "Amira Hassan" }, { @@ -132,7 +132,7 @@ export default function AboutPage() { quote: "Learning Persian with Lusanah wasn't just about language—it was about understanding my grandparents' world, their poetry, their culture. This has given me a deeper sense of identity.", name: "Reza Kiani", role: "Technology Manager", - imageSrc: "http://img.b2bpic.net/free-photo/young-brunette-superhero-costume_23-2147775131.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-brunette-superhero-costume_23-2147775131.jpg?_wi=2", imageAlt: "Reza Kiani" }, { @@ -141,7 +141,7 @@ export default function AboutPage() { quote: "Lusanah's business language program elevated my career. I'm now leading international partnerships and representing my company in Arabic-speaking markets with confidence and cultural respect.", name: "Sarah Mitchell", role: "International Consultant", - imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-vivaceous-blouse-grey-skirt-celebrating-victory-city-lady-raised-hands-she-is-happy-smiling-isolated-office-building-background_549566-694.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-vivaceous-blouse-grey-skirt-celebrating-victory-city-lady-raised-hands-she-is-happy-smiling-isolated-office-building-background_549566-694.jpg?_wi=2", imageAlt: "Sarah Mitchell" } ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..1d534dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,44 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Lusanah - Master Persian & Arabic Languages", + description: "Professional Persian and Arabic language instruction with expert native speakers. Personalized lessons, flexible scheduling, and cultural immersion for all levels.", + keywords: "Persian language, Arabic language, language tutoring, online lessons, fluency, language learning", + openGraph: { + title: "Lusanah - Master Eastern Languages", + description: "Expert Persian and Arabic language education with native instructors.", + siteName: "Lusanah", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Learn Persian & Arabic with Expert Instructors", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +47,9 @@ export default function RootLayout({ return ( - + {children}