Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb5999d56a | |||
| f50dce1440 | |||
| 668bea63d3 | |||
| efc6406426 | |||
| 658399a409 | |||
| d7793c0fc7 | |||
| b01f7667ba | |||
| 9038924941 | |||
| d4c67904fa | |||
| c9fc323f73 | |||
| 5a7b7ad0bf | |||
| 96e65f76f5 | |||
| 398cb1a610 | |||
| 24941c97a4 | |||
| cf1adf5915 | |||
| faa6ce8756 | |||
| ab7aad93a7 | |||
| 9dc9aa8154 | |||
| a1c5940977 | |||
| 85bd29379a | |||
| d5b83e1095 | |||
| 96da8c6e5c | |||
| 6dd213bcf2 | |||
| bd2d2cd270 | |||
| 2a24639600 | |||
| a43b3407b2 | |||
| 5cd93eacae | |||
| 36b92ee9fa | |||
| fb9781321b | |||
| 2318c3af1b | |||
| d348d088f2 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fafffb;;
|
--background: #000000;
|
||||||
--card: #f7fffa;;
|
--card: #1b1b1b;
|
||||||
--foreground: #001a0a;;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #ff0000;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #151515;
|
||||||
--accent: #a8d9be;;
|
--accent: #303030;
|
||||||
--background-accent: #6bbf8e;;
|
--background-accent: #303030;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,61 +1,25 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import "./globals.css";
|
import './globals.css';
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({
|
||||||
variable: "--font-manrope",
|
variable: '--font-inter',
|
||||||
subsets: ["latin"],
|
subsets: ['latin'],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "English Dom - Learn English Online with Expert Instructors",
|
title: 'Webild',
|
||||||
description: "Master English with personalized lessons from certified instructors. Beginner to advanced courses available. Start your free trial today.",
|
description: 'Build Modern Web Experiences',
|
||||||
keywords: "english lessons, learn english online, english courses, language learning, english fluency",
|
|
||||||
metadataBase: new URL("https://englishdom.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://englishdom.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "English Dom - Learn English Online",
|
|
||||||
description: "Transform your English skills with expert instruction and proven methodology.",
|
|
||||||
url: "https://englishdom.com",
|
|
||||||
siteName: "English Dom",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg",
|
|
||||||
alt: "English learning classroom"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "English Dom - Learn English Online",
|
|
||||||
description: "Master English with personalized lessons from certified instructors.",
|
|
||||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" className={inter.variable}>
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={manrope.variable}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1274,7 +1238,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
456
src/app/page.tsx
456
src/app/page.tsx
@@ -1,406 +1,78 @@
|
|||||||
"use client"
|
"use client";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
||||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
||||||
import TagMediaSplitAbout from '@/components/sections/about/TagMediaSplitAbout';
|
|
||||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
|
||||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
|
||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
||||||
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
|
|
||||||
import TeamCardSeven from '@/components/sections/team/TeamCardSeven';
|
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
import { Target, Zap, Star, Crown, Mail } from "lucide-react";
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="fluid"
|
background="aurora"
|
||||||
cardStyle="solid-accent"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="diagonal-gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleMinimal
|
||||||
brandName="English Dom"
|
brandName="Webild"
|
||||||
navItems={[
|
button={{ text: "Get Started", href: "https://webild.io" }}
|
||||||
{ name: "Home", id: "home" },
|
|
||||||
{ name: "About", id: "about" },
|
|
||||||
{ name: "Courses", id: "features" },
|
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
|
||||||
{ name: "Contact", id: "contact" }
|
|
||||||
]}
|
|
||||||
bottomLeftText="Learn English Online"
|
|
||||||
bottomRightText="hello@englishdom.com"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<div className="w-full bg-gradient-to-b from-background via-background to-card py-16 px-4 md:px-8">
|
||||||
logoText="English Dom"
|
<div className="max-w-7xl mx-auto">
|
||||||
description="Master English fluency with expert instructors. Interactive lessons designed for all levels."
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||||
buttons={[
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
{ text: "Start Free Trial", href: "contact" },
|
<img
|
||||||
{ text: "Explore Courses", href: "features" }
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
]}
|
alt="Portfolio item 1"
|
||||||
slides={[
|
className="w-full h-full object-cover"
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg", imageAlt: "Interactive classroom learning" },
|
/>
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484690859-dcha1n3w.jpg", imageAlt: "Online English lessons" },
|
</div>
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484691610-pealshm9.jpg", imageAlt: "English conversation practice" }
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
]}
|
<img
|
||||||
autoplayDelay={4000}
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
showDimOverlay={true}
|
alt="Portfolio item 2"
|
||||||
/>
|
className="w-full h-full object-cover"
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
<div id="about" data-section="about">
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
<TagMediaSplitAbout
|
<img
|
||||||
title="Transforming English Education Since 2015"
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
description="We believe learning English should be engaging, accessible, and effective for everyone."
|
alt="Portfolio item 3"
|
||||||
tag="Our Story"
|
className="w-full h-full object-cover"
|
||||||
textboxLayout="default"
|
/>
|
||||||
contentTag="MISSION"
|
</div>
|
||||||
contentTagIcon={Target}
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
contentTitle="Expert instruction meets modern methodology"
|
<img
|
||||||
contentDescription="English Dom combines traditional teaching excellence with cutting-edge technology. Our certified instructors create personalized learning experiences that help students achieve fluency in speaking, listening, reading, and writing."
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
contentButtons={[{ text: "Learn More", href: "features" }]}
|
alt="Portfolio item 4"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg"
|
className="w-full h-full object-cover"
|
||||||
imageAlt="English Dom learning center"
|
/>
|
||||||
imagePosition="right"
|
</div>
|
||||||
useInvertedBackground="noInvert"
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
/>
|
<img
|
||||||
</div>
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
|
alt="Portfolio item 5"
|
||||||
<div id="features" data-section="features">
|
className="w-full h-full object-cover"
|
||||||
<FeatureCardSeven
|
/>
|
||||||
title="Comprehensive Course Levels"
|
</div>
|
||||||
description="From complete beginner to advanced proficiency, our structured programs ensure steady progress."
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
tag="Courses"
|
<img
|
||||||
textboxLayout="default"
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
features={[
|
alt="Portfolio item 6"
|
||||||
{
|
className="w-full h-full object-cover"
|
||||||
id: 1,
|
/>
|
||||||
title: "Beginner English",
|
</div>
|
||||||
description: "Master pronunciation, basic vocabulary, and essential grammar. Perfect for absolute beginners starting their English journey.",
|
</div>
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484693438-07rkdlqa.jpg"
|
</div>
|
||||||
},
|
</div>
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: "Intermediate English",
|
|
||||||
description: "Build conversational fluency with real-world scenarios. Expand vocabulary and master complex grammar structures.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
title: "Advanced English",
|
|
||||||
description: "Achieve native-like fluency and professionalism. Specialized content for business, academic, and cultural contexts.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484695254-p59fsyqd.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 4,
|
|
||||||
title: "Certification Programs",
|
|
||||||
description: "Prepare for international exams including TOEFL, IELTS, and Cambridge certificates with expert guidance.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484696101-v2pl2f1j.jpg"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
animationType="blur-reveal"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
|
||||||
<PricingCardTwo
|
|
||||||
title="Simple, Transparent Pricing"
|
|
||||||
description="Choose the plan that fits your learning goals and schedule."
|
|
||||||
tag="Plans"
|
|
||||||
textboxLayout="default"
|
|
||||||
plans={[
|
|
||||||
{
|
|
||||||
id: "starter",
|
|
||||||
badge: "Starter",
|
|
||||||
badgeIcon: Zap,
|
|
||||||
price: "$49/month",
|
|
||||||
subtitle: "Perfect for beginners",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Get Started", href: "contact" },
|
|
||||||
{ text: "Learn More", href: "#" }
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"4 lessons per month",
|
|
||||||
"Group classes",
|
|
||||||
"Basic materials",
|
|
||||||
"Email support",
|
|
||||||
"Progress tracking"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "professional",
|
|
||||||
badge: "Professional",
|
|
||||||
badgeIcon: Star,
|
|
||||||
price: "$129/month",
|
|
||||||
subtitle: "Most popular choice",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Get Started", href: "contact" },
|
|
||||||
{ text: "Learn More", href: "#" }
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"12 lessons per month",
|
|
||||||
"One-on-one sessions",
|
|
||||||
"Premium materials",
|
|
||||||
"Priority support",
|
|
||||||
"Custom curriculum",
|
|
||||||
"Monthly assessments"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "elite",
|
|
||||||
badge: "Elite",
|
|
||||||
badgeIcon: Crown,
|
|
||||||
price: "$249/month",
|
|
||||||
subtitle: "For serious learners",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Get Started", href: "contact" },
|
|
||||||
{ text: "Learn More", href: "#" }
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Unlimited lessons",
|
|
||||||
"Dedicated instructor",
|
|
||||||
"Exclusive resources",
|
|
||||||
"24/7 support",
|
|
||||||
"Exam preparation",
|
|
||||||
"Business English focus",
|
|
||||||
"Certification guidance"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
|
||||||
<MetricCardEleven
|
|
||||||
title="Our Impact"
|
|
||||||
description="Trusted by thousands of students worldwide to achieve their English goals."
|
|
||||||
tag="Results"
|
|
||||||
textboxLayout="default"
|
|
||||||
animationType="slide-up"
|
|
||||||
metrics={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
value: "15,000+",
|
|
||||||
title: "Active Students",
|
|
||||||
description: "Learning English every day with our platform",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=hile67"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
value: "8,500+",
|
|
||||||
title: "Graduates",
|
|
||||||
description: "Successfully achieved their language goals",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484696101-v2pl2f1j.jpg"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardEight
|
|
||||||
title="Student Success Stories"
|
|
||||||
description="Hear from students who have transformed their English proficiency."
|
|
||||||
tag="Testimonials"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
name: "Maria Santos",
|
|
||||||
role: "Marketing Manager",
|
|
||||||
company: "TechCorp Brasil",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484693438-07rkdlqa.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Carlos Rodriguez",
|
|
||||||
role: "Business Analyst",
|
|
||||||
company: "Finance Solutions",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Elena Kowalski",
|
|
||||||
role: "Software Engineer",
|
|
||||||
company: "Digital Innovations",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484713203-n9nvo4xz.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Yuki Tanaka",
|
|
||||||
role: "International Student",
|
|
||||||
company: "University of Excellence",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484695254-p59fsyqd.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Sophie Laurent",
|
|
||||||
role: "Project Manager",
|
|
||||||
company: "Global Enterprises",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484714329-4i8nds16.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
name: "Ahmed Hassan",
|
|
||||||
role: "University Professor",
|
|
||||||
company: "Cairo University",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="team" data-section="team">
|
|
||||||
<TeamCardSeven
|
|
||||||
title="Meet Our Expert Instructors"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
team={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716991-2p5cqa53.jpg",
|
|
||||||
imageAlt: "Sarah Johnson - Senior English Instructor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484717848-3wjgcq9n.jpg",
|
|
||||||
imageAlt: "Emma Wilson - Pronunciation Specialist"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg",
|
|
||||||
imageAlt: "Michael Chen - Business English Expert"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg",
|
|
||||||
imageAlt: "Lisa Anderson - Exam Preparation Coach"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484719756-7stq3wqe.jpg",
|
|
||||||
imageAlt: "James Martinez - Conversational English Instructor"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
|
||||||
<FaqSplitMedia
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Find answers to common questions about our courses and programs."
|
|
||||||
tag="Help"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414396263-ecaeakat.jpg"
|
|
||||||
imageAlt="Customer support team"
|
|
||||||
mediaPosition="left"
|
|
||||||
faqs={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
title: "How do I choose the right level for me?",
|
|
||||||
content: "We offer a free placement test to assess your current English level. Based on the results, our advisors will recommend the best course level for your needs. You can also switch levels at any time during your learning journey."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Can I schedule lessons at my own pace?",
|
|
||||||
content: "Yes! Our platform offers flexible scheduling. You can book lessons at times that work best for you. Group classes have fixed schedules, while one-on-one sessions can be customized to your availability."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "What materials do you provide?",
|
|
||||||
content: "All our courses include comprehensive learning materials including textbooks, audio files, videos, and interactive exercises. Premium and Elite plans include exclusive resources and specialized content."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Do you offer certification programs?",
|
|
||||||
content: "Yes! We prepare students for major international certifications including TOEFL, IELTS, Cambridge, and TOEIC. Our Elite plan includes comprehensive exam preparation and guidance."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "What is your cancellation policy?",
|
|
||||||
content: "You can cancel your subscription anytime with no penalties. We also offer a 7-day money-back guarantee on your first month if you're not completely satisfied."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
title: "How do you track my progress?",
|
|
||||||
content: "We provide detailed progress reports, monthly assessments, and personalized feedback. Your instructor will work with you to set goals and monitor your improvement across all language skills."
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactSplit
|
|
||||||
tag="Newsletter"
|
|
||||||
title="Start Your English Journey Today"
|
|
||||||
description="Join thousands of students who are achieving fluency with English Dom. Get expert guidance, personalized lessons, and proven results."
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg"
|
|
||||||
imageAlt="Students learning together"
|
|
||||||
mediaPosition="right"
|
|
||||||
tagIcon={Mail}
|
|
||||||
inputPlaceholder="Enter your email address"
|
|
||||||
buttonText="Join Now US"
|
|
||||||
termsText="We respect your privacy. Unsubscribe at any time. By signing up, you agree to our Terms of Service."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoEmphasis
|
|
||||||
logoText="English Dom"
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "home" },
|
|
||||||
{ label: "About Us", href: "about" },
|
|
||||||
{ label: "Courses", href: "features" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{ label: "Pricing", href: "pricing" },
|
|
||||||
{ label: "Testimonials", href: "testimonials" },
|
|
||||||
{ label: "Contact", href: "contact" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{ label: "Privacy Policy", href: "#" },
|
|
||||||
{ label: "Terms of Service", href: "#" },
|
|
||||||
{ label: "Sitemap", href: "#" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{ label: "Facebook", href: "https://facebook.com" },
|
|
||||||
{ label: "Twitter", href: "https://twitter.com" },
|
|
||||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user