Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-15 02:53:25 +00:00
5 changed files with 78 additions and 39 deletions

View File

@@ -94,7 +94,7 @@ export default function AboutPage() {
tag="Our Mission"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg"
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg?_wi=3"
imageAlt="FLC Education mission and vision"
mediaAnimation="opacity"
metricsAnimation="slide-up"
@@ -131,7 +131,7 @@ export default function AboutPage() {
title: "Excellence in Teaching",
subtitle: "Quality Educators & Methodology",
description: "We invest heavily in recruiting, training, and supporting the best educators. Our teachers undergo continuous professional development to stay at the forefront of language teaching innovation and methodologies.",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg?_wi=3",
imageAlt: "Teaching excellence",
buttons: [],
},
@@ -141,7 +141,7 @@ export default function AboutPage() {
title: "Student-Centered Learning",
subtitle: "Individual Progress & Goals",
description: "Every student has unique goals and learning styles. Our programs are designed to be flexible and personalized, recognizing that one size doesn't fit all in language education.",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg?_wi=2",
imageAlt: "Student-centered approach",
buttons: [],
},
@@ -151,7 +151,7 @@ export default function AboutPage() {
title: "Practical Language Skills",
subtitle: "Real-World Application",
description: "We don't just teach grammar and vocabulary. We focus on developing communication skills that students can immediately apply in their work, studies, and daily interactions.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg?_wi=2",
imageAlt: "Practical learning impact",
buttons: [],
},
@@ -178,22 +178,22 @@ export default function AboutPage() {
{
id: "1",
name: "Dr. James Wilson - Founder & CEO",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-sitting-desk-with-laptop-books-pencils_114579-28439.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-sitting-desk-with-laptop-books-pencils_114579-28439.jpg?_wi=2",
},
{
id: "2",
name: "Prof. Elena Rodriguez - Academic Director",
imageSrc: "http://img.b2bpic.net/free-photo/break-lectures-university_329181-2985.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/break-lectures-university_329181-2985.jpg?_wi=2",
},
{
id: "3",
name: "Mr. David Park - Operations Manager",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16048.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16048.jpg?_wi=2",
},
{
id: "4",
name: "Ms. Jennifer Ahmad - Curriculum Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361854.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361854.jpg?_wi=2",
},
]}
containerClassName="px-6 py-16 lg:py-24"

View File

@@ -1,24 +1,61 @@
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: "FLC Education - Premium English Language Schools",
description: "Transform your English skills with FLC Education. Offering General Purpose, Academic, and Young Learner programs. Expert teachers, flexible scheduling, online & on-campus classes. Join 5000+ successful learners.",
keywords: "English language school, English courses, General Purpose English, Academic English, Young Learners, IELTS preparation, TOEFL preparation, online English classes",
metadataBase: new URL("https://flceducation.com"),
alternates: {
canonical: "https://flceducation.com",
},
openGraph: {
title: "FLC Education - Excellence in English Language Learning",
description: "Premium English education programs: General Purpose, Academic, and Young Learners. Experienced teachers, proven results, flexible scheduling.",
url: "https://flceducation.com",
siteName: "FLC Education",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg",
alt: "FLC Education English classroom",
},
],
},
twitter: {
card: "summary_large_image",
title: "FLC Education - English Language Excellence",
description: "Transform your English skills. General Purpose, Academic & Young Learners programs.",
images: ["http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -100,7 +100,7 @@ export default function NobleEnglishSchoolPage() {
title: "Preschool English Program",
subtitle: "Ages 3-5 | Early Language Exposure",
description: "Introduce your child to English through music, games, and storytelling. Our Preschool program builds phonemic awareness and basic vocabulary in a nurturing, play-rich environment. Teachers use interactive methods that make learning feel like playtime, establishing a positive relationship with language that lasts a lifetime.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg?_wi=3",
imageAlt: "Preschool English",
buttons: [{ text: "Learn More", href: "#" }],
},
@@ -110,7 +110,7 @@ export default function NobleEnglishSchoolPage() {
title: "Elementary English Program",
subtitle: "Ages 6-9 | Reading & Writing Development",
description: "Build strong foundational skills in reading, writing, listening, and speaking. Our Elementary program uses engaging storybooks, creative writing projects, and interactive activities to develop literacy skills. Students participate in classroom dramatizations, art projects, and peer communication exercises that reinforce language learning naturally.",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg?_wi=3",
imageAlt: "Elementary English",
buttons: [{ text: "Learn More", href: "#" }],
},
@@ -120,7 +120,7 @@ export default function NobleEnglishSchoolPage() {
title: "Upper Elementary Program",
subtitle: "Ages 10-12 | Fluency & Confidence",
description: "Achieve fluency and grammatical accuracy while maintaining enthusiasm for learning. Our Upper Elementary program introduces complex grammar structures, academic vocabulary, and cultural awareness. Students engage in debates, presentations, and collaborative projects that build confidence and sophisticated communication abilities.",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg?_wi=4",
imageAlt: "Upper Elementary English",
buttons: [{ text: "Learn More", href: "#" }],
},
@@ -153,7 +153,7 @@ export default function NobleEnglishSchoolPage() {
handle: "@fatima_mom",
testimonial: "My daughter transformed from being shy to confidently speaking English within just three months at Noble! The teachers make it so fun that she actually looks forward to classes. Best investment in her future!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-talking-phone-while-standing-outdoors-street-business-concept_58466-11845.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-talking-phone-while-standing-outdoors-street-business-concept_58466-11845.jpg?_wi=2",
imageAlt: "Fatima Al-Zahra",
},
{
@@ -162,7 +162,7 @@ export default function NobleEnglishSchoolPage() {
handle: "@ahmed_dad",
testimonial: "The curriculum is well-designed and age-appropriate. My son has improved not just in English but also in confidence and social skills. The teachers genuinely care about each child's progress. Highly satisfied!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-graduation-ceremony_23-2148505275.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-graduation-ceremony_23-2148505275.jpg?_wi=2",
imageAlt: "Ahmed Hassan",
},
{
@@ -171,7 +171,7 @@ export default function NobleEnglishSchoolPage() {
handle: "@sarah_parent",
testimonial: "Noble English School stood out because it doesn't feel like a traditional school. The creative activities and interactive methods keep kids engaged and excited about learning. My twins ask to go to class!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-121409.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-121409.jpg?_wi=2",
imageAlt: "Sarah Mona",
},
]}

View File

@@ -102,11 +102,11 @@ export default function HomePage() {
]}
buttonAnimation="slide-up"
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg", imageAlt: "modern english classroom students learning" },
{ imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg", imageAlt: "education organization vision mission values" },
{ imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg?_wi=1", imageAlt: "modern english classroom students learning" },
{ imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg?_wi=1", imageAlt: "education organization vision mission values" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg", imageAlt: "english conversation communication general purpose" },
{ imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg?_wi=1", imageAlt: "english conversation communication general purpose" },
{ imageSrc: "http://img.b2bpic.net/free-photo/graduate-woman-showing-winner-gesture-casual-clothes-uniform-looking-happy-front-view_176474-51108.jpg", imageAlt: "english teachers professional instruction interactive" },
]}
carouselPosition="right"
@@ -132,7 +132,7 @@ export default function HomePage() {
tag="Our Organization"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg"
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-flat-our-mission-flyers_23-2149065174.jpg?_wi=2"
imageAlt="FLC Education facilities"
mediaAnimation="opacity"
metricsAnimation="slide-up"
@@ -169,7 +169,7 @@ export default function HomePage() {
title: "English for General Purpose",
subtitle: "Practical Communication Skills",
description: "Master everyday English for travel, work, and social interactions. Our General Purpose program focuses on practical conversational skills, vocabulary building, and cultural fluency.",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg?_wi=2",
imageAlt: "General Purpose English",
buttons: [{ text: "Learn More", href: "/services" }],
},
@@ -179,7 +179,7 @@ export default function HomePage() {
title: "English for Academic",
subtitle: "University & Exam Preparation",
description: "Prepare for IELTS, TOEFL, and academic success. Develop advanced writing, research, and presentation skills required for university education and professional advancement.",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg?_wi=1",
imageAlt: "Academic English",
buttons: [{ text: "Learn More", href: "/services" }],
},
@@ -189,7 +189,7 @@ export default function HomePage() {
title: "English for Young Learners",
subtitle: "Noble English School",
description: "Innovative, play-based English education for children. Noble English School creates engaging learning environments where young students develop foundational English skills through creativity and interaction.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-kids-about-planets_23-2148925468.jpg?_wi=1",
imageAlt: "Young Learners Program",
buttons: [{ text: "Explore Noble", href: "/noble-english-school" }],
},
@@ -286,7 +286,7 @@ export default function HomePage() {
handle: "@ahmed.hassan",
testimonial: "FLC Education transformed my English skills completely. The teachers are incredibly knowledgeable and patient. Within 6 months, I achieved my IELTS target. Highly recommended!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-graduation-ceremony_23-2148505275.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-graduation-ceremony_23-2148505275.jpg?_wi=1",
imageAlt: "Ahmed Hassan",
},
{
@@ -295,7 +295,7 @@ export default function HomePage() {
handle: "@sarah.learns",
testimonial: "The Academic English program prepared me perfectly for university. I've now been accepted to three top universities abroad. Thank you, FLC!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-121409.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-121409.jpg?_wi=1",
imageAlt: "Sarah Mona",
},
{
@@ -313,7 +313,7 @@ export default function HomePage() {
handle: "@fatima.learns",
testimonial: "I brought my children to Noble English School and they absolutely love it! The interactive lessons and creative teaching methods make learning fun. Best decision ever!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-talking-phone-while-standing-outdoors-street-business-concept_58466-11845.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-talking-phone-while-standing-outdoors-street-business-concept_58466-11845.jpg?_wi=1",
imageAlt: "Fatima Al-Zahra",
},
]}
@@ -339,22 +339,22 @@ export default function HomePage() {
{
id: "1",
name: "Dr. James Wilson",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-sitting-desk-with-laptop-books-pencils_114579-28439.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-sitting-desk-with-laptop-books-pencils_114579-28439.jpg?_wi=1",
},
{
id: "2",
name: "Prof. Elena Rodriguez",
imageSrc: "http://img.b2bpic.net/free-photo/break-lectures-university_329181-2985.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/break-lectures-university_329181-2985.jpg?_wi=1",
},
{
id: "3",
name: "Mr. David Park",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16048.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16048.jpg?_wi=1",
},
{
id: "4",
name: "Ms. Jennifer Ahmad",
imageSrc: "http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361854.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361854.jpg?_wi=1",
},
]}
containerClassName="px-6 py-16 lg:py-24"

View File

@@ -100,7 +100,7 @@ export default function ServicesPage() {
title: "General Purpose English",
subtitle: "For Working Professionals & Travelers",
description: "Master practical English for everyday situations. Our General Purpose program focuses on real-world communication skills, business interactions, travel phrases, and social engagement. Perfect for professionals seeking to enhance their career opportunities and travel confidence. Small group classes ensure personalized attention and rapid progress.",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/english-teacher-doing-her-lessons-online-home_23-2148999572.jpg?_wi=4",
imageAlt: "General Purpose English",
buttons: [{ text: "Enroll Now", href: "#contact" }],
},
@@ -110,7 +110,7 @@ export default function ServicesPage() {
title: "Academic English",
subtitle: "University & Professional Exams",
description: "Prepare comprehensively for IELTS, TOEFL, and international academic standards. This intensive program develops critical skills in academic writing, research methodology, presentation techniques, and test strategies. Our success rate exceeds 95%, with students gaining admission to leading universities worldwide. Includes mock exams and personalized feedback.",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/student-making-calculations-notebook_23-2147844700.jpg?_wi=3",
imageAlt: "Academic English",
buttons: [{ text: "Enroll Now", href: "#contact" }],
},
@@ -120,7 +120,7 @@ export default function ServicesPage() {
title: "Corporate English Training",
subtitle: "Business Communication & Soft Skills",
description: "Customize your corporate training experience with executive-level English instruction. Designed for organizations seeking to enhance employee communication capabilities and international business competency. Includes business writing, presentation skills, negotiation techniques, and cross-cultural communication.",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361576.jpg?_wi=2",
imageAlt: "Corporate Training",
buttons: [{ text: "Request Quote", href: "#contact" }],
},