From d88a74e0f47e13c12d5b008e7130df0c3e5b7180 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 12:54:45 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8f02323..fff74dd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -54,7 +54,7 @@ export default function AboutPage() { tagAnimation="slide-up" buttons={[{ text: "Start Your Journey", href: "#" }]} buttonAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/an-engaging-illustration-of-a-diverse-st-1773492821234-52ce1d7c.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/an-engaging-illustration-of-a-diverse-st-1773492821234-52ce1d7c.png?_wi=2" imageAlt="FluentAI team collaborating on AI learning platform" mediaAnimation="blur-reveal" imagePosition="right" -- 2.49.1 From 01a3e935b19a2651c35bc7c26bad9747036788ac Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 12:54:45 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a34f234..dd8271e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -78,7 +78,7 @@ export default function ContactPage() { required: false, }} useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/a-warm-illustration-of-a-person-using-mo-1773492820957-db8ec3cc.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/a-warm-illustration-of-a-person-using-mo-1773492820957-db8ec3cc.png?_wi=2" imageAlt="Person using mobile phone for English learning" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 9f8b1fe0967b6981ef37882507c3fde76e3a26a8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 12:54:46 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..9e3522d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "FluentAI - Master English with AI Tutoring", + description: "Learn to speak fluent English with FluentAI. AI-powered conversational practice, pronunciation coaching, and personalized curriculum. Start free today.", + keywords: "English learning, AI tutor, fluent English, pronunciation training, English conversation, language learning app", + metadataBase: new URL("https://fluentai.com"), + alternates: { + canonical: "https://fluentai.com", + }, + openGraph: { + title: "FluentAI - Your Personal AI English Tutor", + description: "Master English fluency through AI-powered conversation practice. 50,000+ students improving their English.", + url: "https://fluentai.com", + siteName: "FluentAI", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/an-engaging-illustration-of-a-diverse-st-1773492821234-52ce1d7c.png", + alt: "FluentAI - Learn English with AI", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "FluentAI - Master English with AI Tutoring", + description: "Learn to speak fluent English through AI-powered conversation practice and personalized coaching.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aw95derXsyR8P9pMJGkwEgO6fR/an-engaging-illustration-of-a-diverse-st-1773492821234-52ce1d7c.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}