Merge version_2_1781533250706 into main #1
@@ -1,211 +1,38 @@
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import { Award, BookOpen, GraduationCap, Users, Zap } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import ProgramsSection from './HomePage/sections/Programs';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
|
||||
{/* webild-stub @2026-06-15T14:22:02.484Z: Include a section displaying logos of educational accreditation bodies or ministry affiliations to immediately establish institutional credibility and authority. */}
|
||||
|
||||
import AccreditationsSection from './HomePage/sections/Accreditations';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBrand
|
||||
brand="مدارس المستقلة الأهلية"
|
||||
description="صرح تعليمي متميز يبني أجيال المستقبل برؤية واعدة وبيئة تعليمية محفزة ومبتكرة."
|
||||
primaryButton={{
|
||||
text: "اكتشف المزيد",
|
||||
href: "#about",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "سجل الآن",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/education-conceptual-image_1204-388.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
<AccreditationsSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="لماذا تختارنا؟"
|
||||
title="رؤيتنا تتجاوز التعليم التقليدي"
|
||||
description="نقدم بيئة تعليمية متكاملة تدمج بين القيم والأصالة وبين التكنولوجيا الحديثة وأحدث المناهج العالمية لضمان تفوق الطالب."
|
||||
items={[
|
||||
{
|
||||
icon: GraduationCap,
|
||||
title: "تعليم متميز",
|
||||
description: "مناهج عالمية بمعايير تعليمية متطورة.",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "نخبة المعلمين",
|
||||
description: "كادر تعليمي مؤهل ومدرب على أحدث أساليب التدريس.",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "بيئة محفزة",
|
||||
description: "مرافق تعليمية متطورة وتجهيزات تقنية عالية.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-futuristic-high-tech-classroom-students_23-2150906218.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="programs" data-section="programs">
|
||||
<SectionErrorBoundary name="programs">
|
||||
<FeaturesMediaCarousel
|
||||
tag="برامجنا الأكاديمية"
|
||||
title="مسارات تعليمية متنوعة"
|
||||
description="نحرص على توفير بيئة تعليمية تلبي احتياجات جميع المراحل الدراسية عبر مسارات مبتكرة."
|
||||
items={[
|
||||
{
|
||||
title: "المرحلة الابتدائية",
|
||||
description: "تأسيس قوي يعزز مهارات التفكير النقدي والإبداع.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-various-supplies_23-2149557509.jpg",
|
||||
},
|
||||
{
|
||||
title: "المرحلة المتوسطة",
|
||||
description: "صقل المهارات الشخصية والقيادية في بيئة علمية.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-children-s-desk-with-paint-drawing_23-2149025157.jpg",
|
||||
},
|
||||
{
|
||||
title: "المرحلة الثانوية",
|
||||
description: "تهيئة شاملة لمستقبل جامعي واعد ومسارات مهنية.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-couple-sitting-together-sofa-looking-digital-table_23-2148151865.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProgramsSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsIconCards
|
||||
tag="إنجازاتنا"
|
||||
title="أرقام تتحدث عن تميزنا"
|
||||
description="نفتخر بكوننا جزءاً من رحلة آلاف الطلاب نحو النجاح والتفوق الأكاديمي."
|
||||
metrics={[
|
||||
{
|
||||
icon: Users,
|
||||
title: "طالب مبدع",
|
||||
value: "2000+",
|
||||
},
|
||||
{
|
||||
icon: BookOpen,
|
||||
title: "معلم خبير",
|
||||
value: "150+",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
title: "جائزة إبداع",
|
||||
value: "50+",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="شركاء النجاح"
|
||||
title="ماذا يقول أولياء الأمور؟"
|
||||
description="نعتز بثقة المجتمع التعليمي بنا وبنتائج طلابنا المتميزة."
|
||||
testimonials={[
|
||||
{
|
||||
name: "أحمد السعيد",
|
||||
role: "ولي أمر",
|
||||
quote: "تجربة تعليمية استثنائية طورت من شخصية ابني بشكل ملحوظ.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-prepare-little-daughter-school_1157-31763.jpg",
|
||||
},
|
||||
{
|
||||
name: "سارة المحمد",
|
||||
role: "طالبة خريجة",
|
||||
quote: "المدرسة كانت الداعم الأول لي للوصول للجامعة.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-tourist-holds-textbook-planner-spends-vacations-visiting-unknown-city_273609-55598.jpg",
|
||||
},
|
||||
{
|
||||
name: "د. خالد العبيدي",
|
||||
role: "تربوي",
|
||||
quote: "مدارس المستقلة نموذج يحتذى به في التميز الأكاديمي.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
|
||||
},
|
||||
{
|
||||
name: "ليلى العتيبي",
|
||||
role: "ولية أمر",
|
||||
quote: "اهتمام بالتفاصيل وبيئة مدرسية تشعرك بالطمأنينة.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-co-worker-spending-time-office_23-2149328287.jpg",
|
||||
},
|
||||
{
|
||||
name: "ياسر الحربي",
|
||||
role: "أكاديمي",
|
||||
quote: "أفضل خيار تعليمي يجمع بين التقنية والقيم التربوية.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-striped-shirt-eyeglasses_273609-13227.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="مركز المساعدة"
|
||||
title="أسئلة شائعة"
|
||||
description="إجابات على أهم الاستفسارات حول القبول والتسجيل."
|
||||
categories={[
|
||||
{
|
||||
name: "القبول والتسجيل",
|
||||
items: [
|
||||
{
|
||||
question: "كيف يمكنني تسجيل ابني؟",
|
||||
answer: "يمكنك التقديم إلكترونياً عبر نموذج القبول بموقعنا.",
|
||||
},
|
||||
{
|
||||
question: "ما هي الأوراق المطلوبة؟",
|
||||
answer: "شهادة الميلاد، كشف درجات آخر عام، وصورة الهوية.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "المناهج والأنشطة",
|
||||
items: [
|
||||
{
|
||||
question: "هل تتوفر أنشطة لاصفية؟",
|
||||
answer: "نعم، نقدم برامج رياضية وفنية متنوعة بعد الدوام الدراسي.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="ابدأ رحلتك معنا"
|
||||
text="هل أنت مستعد للانضمام لمجتمعنا التعليمي؟ تواصل معنا اليوم."
|
||||
primaryButton={{
|
||||
text: "تقديم طلب تسجيل",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "اتصل بنا",
|
||||
href: "tel:000000",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
39
src/pages/HomePage/sections/About.tsx
Normal file
39
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import { Award, BookOpen, GraduationCap, Users, Zap } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="لماذا تختارنا؟"
|
||||
title="رؤيتنا تتجاوز التعليم التقليدي"
|
||||
description="نقدم بيئة تعليمية متكاملة تدمج بين القيم والأصالة وبين التكنولوجيا الحديثة وأحدث المناهج العالمية لضمان تفوق الطالب."
|
||||
items={[
|
||||
{
|
||||
icon: GraduationCap,
|
||||
title: "تعليم متميز",
|
||||
description: "مناهج عالمية بمعايير تعليمية متطورة.",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "نخبة المعلمين",
|
||||
description: "كادر تعليمي مؤهل ومدرب على أحدث أساليب التدريس.",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "بيئة محفزة",
|
||||
description: "مرافق تعليمية متطورة وتجهيزات تقنية عالية.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-futuristic-high-tech-classroom-students_23-2150906218.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
46
src/pages/HomePage/sections/Accreditations.tsx
Normal file
46
src/pages/HomePage/sections/Accreditations.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
import ScrollReveal from '@/components/ui/ScrollReveal';
|
||||
import TextAnimation from '@/components/ui/TextAnimation';
|
||||
import LoopCarousel from '@/components/ui/LoopCarousel';
|
||||
import ImageOrVideo from '@/components/ui/ImageOrVideo';
|
||||
|
||||
export default function AccreditationsSection() {
|
||||
return (
|
||||
<div data-webild-section="accreditations" id="accreditations" className="py-16 bg-background-accent/10 border-y border-border/50">
|
||||
<div className="w-content-width mx-auto px-4">
|
||||
<ScrollReveal variant="fade">
|
||||
<div className="text-center mb-10">
|
||||
<TextAnimation
|
||||
text="الاعتمادات والشراكات التعليمية"
|
||||
variant="fade-blur"
|
||||
tag="h2"
|
||||
className="text-2xl md:text-3xl font-bold text-foreground mb-4"
|
||||
gradientText={false}
|
||||
/>
|
||||
<p className="text-muted-foreground max-w-2xl mx-auto">
|
||||
نفخر بحصولنا على اعتمادات من أبرز الهيئات التعليمية المحلية والدولية
|
||||
</p>
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
|
||||
<div className="mt-8">
|
||||
<LoopCarousel>
|
||||
{[
|
||||
{ name: "وزارة التعليم", src: "https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=100&fit=crop&q=80" },
|
||||
{ name: "هيئة تقويم التعليم والتدريب", src: "https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=100&fit=crop&q=80" },
|
||||
{ name: "Cognia", src: "https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=100&fit=crop&q=80" },
|
||||
{ name: "Cambridge Assessment", src: "https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=100&fit=crop&q=80" },
|
||||
{ name: "IB World School", src: "https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=100&fit=crop&q=80" },
|
||||
].map((logo, idx) => (
|
||||
<div key={idx} className="flex items-center justify-center px-8 md:px-12 grayscale hover:grayscale-0 transition-all duration-300 opacity-60 hover:opacity-100">
|
||||
<ImageOrVideo
|
||||
imageSrc={logo.src}
|
||||
className="h-12 md:h-16 object-contain"
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</LoopCarousel>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="ابدأ رحلتك معنا"
|
||||
text="هل أنت مستعد للانضمام لمجتمعنا التعليمي؟ تواصل معنا اليوم."
|
||||
primaryButton={{
|
||||
text: "تقديم طلب تسجيل",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "اتصل بنا",
|
||||
href: "tel:000000",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
44
src/pages/HomePage/sections/Faq.tsx
Normal file
44
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,44 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="مركز المساعدة"
|
||||
title="أسئلة شائعة"
|
||||
description="إجابات على أهم الاستفسارات حول القبول والتسجيل."
|
||||
categories={[
|
||||
{
|
||||
name: "القبول والتسجيل",
|
||||
items: [
|
||||
{
|
||||
question: "كيف يمكنني تسجيل ابني؟",
|
||||
answer: "يمكنك التقديم إلكترونياً عبر نموذج القبول بموقعنا.",
|
||||
},
|
||||
{
|
||||
question: "ما هي الأوراق المطلوبة؟",
|
||||
answer: "شهادة الميلاد، كشف درجات آخر عام، وصورة الهوية.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "المناهج والأنشطة",
|
||||
items: [
|
||||
{
|
||||
question: "هل تتوفر أنشطة لاصفية؟",
|
||||
answer: "نعم، نقدم برامج رياضية وفنية متنوعة بعد الدوام الدراسي.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Hero.tsx
Normal file
28
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBrand
|
||||
brand="مدارس المستقلة الأهلية"
|
||||
description="صرح تعليمي متميز يبني أجيال المستقبل برؤية واعدة وبيئة تعليمية محفزة ومبتكرة."
|
||||
primaryButton={{
|
||||
text: "اكتشف المزيد",
|
||||
href: "#about",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "سجل الآن",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/education-conceptual-image_1204-388.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
38
src/pages/HomePage/sections/Metrics.tsx
Normal file
38
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||
import { Award, BookOpen, GraduationCap, Users, Zap } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsIconCards
|
||||
tag="إنجازاتنا"
|
||||
title="أرقام تتحدث عن تميزنا"
|
||||
description="نفتخر بكوننا جزءاً من رحلة آلاف الطلاب نحو النجاح والتفوق الأكاديمي."
|
||||
metrics={[
|
||||
{
|
||||
icon: Users,
|
||||
title: "طالب مبدع",
|
||||
value: "2000+",
|
||||
},
|
||||
{
|
||||
icon: BookOpen,
|
||||
title: "معلم خبير",
|
||||
value: "150+",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
title: "جائزة إبداع",
|
||||
value: "50+",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
40
src/pages/HomePage/sections/Programs.tsx
Normal file
40
src/pages/HomePage/sections/Programs.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "programs" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProgramsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="programs" data-section="programs">
|
||||
<SectionErrorBoundary name="programs">
|
||||
<FeaturesMediaCarousel
|
||||
tag="برامجنا الأكاديمية"
|
||||
title="مسارات تعليمية متنوعة"
|
||||
description="نحرص على توفير بيئة تعليمية تلبي احتياجات جميع المراحل الدراسية عبر مسارات مبتكرة."
|
||||
items={[
|
||||
{
|
||||
title: "المرحلة الابتدائية",
|
||||
description: "تأسيس قوي يعزز مهارات التفكير النقدي والإبداع.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-various-supplies_23-2149557509.jpg",
|
||||
},
|
||||
{
|
||||
title: "المرحلة المتوسطة",
|
||||
description: "صقل المهارات الشخصية والقيادية في بيئة علمية.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-children-s-desk-with-paint-drawing_23-2149025157.jpg",
|
||||
},
|
||||
{
|
||||
title: "المرحلة الثانوية",
|
||||
description: "تهيئة شاملة لمستقبل جامعي واعد ومسارات مهنية.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-couple-sitting-together-sofa-looking-digital-table_23-2148151865.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="شركاء النجاح"
|
||||
title="ماذا يقول أولياء الأمور؟"
|
||||
description="نعتز بثقة المجتمع التعليمي بنا وبنتائج طلابنا المتميزة."
|
||||
testimonials={[
|
||||
{
|
||||
name: "أحمد السعيد",
|
||||
role: "ولي أمر",
|
||||
quote: "تجربة تعليمية استثنائية طورت من شخصية ابني بشكل ملحوظ.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-prepare-little-daughter-school_1157-31763.jpg",
|
||||
},
|
||||
{
|
||||
name: "سارة المحمد",
|
||||
role: "طالبة خريجة",
|
||||
quote: "المدرسة كانت الداعم الأول لي للوصول للجامعة.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-tourist-holds-textbook-planner-spends-vacations-visiting-unknown-city_273609-55598.jpg",
|
||||
},
|
||||
{
|
||||
name: "د. خالد العبيدي",
|
||||
role: "تربوي",
|
||||
quote: "مدارس المستقلة نموذج يحتذى به في التميز الأكاديمي.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
|
||||
},
|
||||
{
|
||||
name: "ليلى العتيبي",
|
||||
role: "ولية أمر",
|
||||
quote: "اهتمام بالتفاصيل وبيئة مدرسية تشعرك بالطمأنينة.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-co-worker-spending-time-office_23-2149328287.jpg",
|
||||
},
|
||||
{
|
||||
name: "ياسر الحربي",
|
||||
role: "أكاديمي",
|
||||
quote: "أفضل خيار تعليمي يجمع بين التقنية والقيم التربوية.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-striped-shirt-eyeglasses_273609-13227.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user