9 Commits

Author SHA1 Message Date
96e65f76f5 Merge version_8 into main
Merge version_8 into main
2025-12-25 10:17:46 +00:00
24941c97a4 Merge version_7 into main
Merge version_7 into main
2025-12-25 08:04:07 +00:00
faa6ce8756 Merge version_7 into main
Merge version_7 into main
2025-12-25 08:02:25 +00:00
9dc9aa8154 Merge version_7 into main
Merge version_7 into main
2025-12-25 08:00:10 +00:00
85bd29379a Merge version_6 into main
Merge version_6 into main
2025-12-25 07:57:36 +00:00
96da8c6e5c Merge version_5 into main
Merge version_5 into main
2025-12-24 15:54:33 +00:00
a43b3407b2 Merge version_4 into main
Merge version_4 into main
2025-12-24 09:40:05 +00:00
fb9781321b Merge version_3 into main
Merge version_3 into main
2025-12-23 10:23:50 +00:00
d348d088f2 Merge version_2 into main
Merge version_2 into main
2025-12-23 10:18:27 +00:00
3 changed files with 210 additions and 83 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #000000; --background: #ffffff;
--card: #1b1b1b; --card: #fcfcfc;
--foreground: #ffffff; --foreground: #120006e6;
--primary-cta: #ff0000; --primary-cta: #e63946;
--secondary-cta: #151515; --secondary-cta: #ffffff;
--accent: #303030; --accent: #ffcf40;
--background-accent: #303030; --background-accent: #ffd966;
/* 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);

View File

@@ -1,25 +1,61 @@
import type { Metadata } from 'next'; import type { Metadata } from "next";
import { Inter } from 'next/font/google'; import { Manrope } from "next/font/google";
import './globals.css'; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ const manrope = Manrope({
variable: '--font-inter', variable: "--font-manrope",
subsets: ['latin'], subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'Webild', title: "English Dom - Learn English Online with Expert Instructors",
description: 'Build Modern Web Experiences', description: "Master English with personalized lessons from certified instructors. Beginner to advanced courses available. Start your free trial today.",
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" className={inter.variable}> <html lang="en" suppressHydrationWarning>
<body>{children} <ServiceWrapper>
<body
className={manrope.variable}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1238,6 +1274,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,79 +1,169 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial";
import { Youtube, Twitter, Linkedin } from "lucide-react";
export default function Home() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide" defaultTextAnimation="background-highlight"
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium" contentWidth="medium"
sizing="medium" sizing="largeSizeMediumTitles"
background="aurora" background="fluid"
cardStyle="glass-elevated" cardStyle="solid-accent"
primaryButtonStyle="gradient" primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="solid"
headingFontWeight="normal" headingFontWeight="medium"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarStyleApple
brandName="Webild" navItems={[
button={{ text: "Get Started", href: "https://webild.io" }} { name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Courses", id: "features" },
{ name: "Contact", id: "contact" }
]}
brandName="English Dom"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<div className="w-full bg-gradient-to-b from-background via-background to-card py-16 px-4 md:px-8"> <HeroBillboard
<div className="max-w-7xl mx-auto"> title="English Dom"
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> description="Master English fluency with expert instructors. Interactive lessons designed for all levels."
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg"
<img imageAlt="English Dom learning experience"
src="/placeholders/placeholder-16-9.svg" frameStyle="card"
alt="Portfolio item 1" buttons={[
className="w-full h-full object-cover" { text: "Start Trial", href: "contact" },
/> { text: "All Courses", href: "features" }
</div> ]}
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> />
<img </div>
src="/placeholders/placeholder-16-9.svg"
alt="Portfolio item 2" <div id="about" data-section="about">
className="w-full h-full object-cover" <SplitAbout
/> title="Transforming English Education Since 2015"
</div> description="We believe learning English should be engaging, accessible, and effective for everyone."
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> textboxLayout="default"
<img useInvertedBackground="noInvert"
src="/placeholders/placeholder-16-9.svg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg"
alt="Portfolio item 3" imageAlt="English Dom learning center"
className="w-full h-full object-cover" imagePosition="right"
/> bulletPoints={[
</div> {
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> title: "Expert Instruction",
<img description: "Certified instructors with proven teaching excellence"
src="/placeholders/placeholder-16-9.svg" },
alt="Portfolio item 4" {
className="w-full h-full object-cover" title: "Modern Methodology",
/> description: "Cutting-edge technology meets traditional teaching"
</div> },
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> {
<img title: "Personalized Learning",
src="/placeholders/placeholder-16-9.svg" description: "Customized experiences for speaking, listening, reading, and writing"
alt="Portfolio item 5" }
className="w-full h-full object-cover" ]}
/> buttons={[
</div> { text: "Learn More", href: "contact" }
<div className="aspect-video bg-accent rounded-lg overflow-hidden"> ]}
<img />
src="/placeholders/placeholder-16-9.svg" </div>
alt="Portfolio item 6"
className="w-full h-full object-cover" <div id="features" data-section="features">
/> <FeatureCardOne
</div> title="Comprehensive Course Levels"
</div> description="From complete beginner to advanced proficiency, our structured programs ensure steady progress."
</div> textboxLayout="default"
</div> useInvertedBackground="noInvert"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
carouselMode="buttons"
features={[
{
title: "Beginner English",
description: "Master pronunciation, basic vocabulary, and essential grammar. Perfect for absolute beginners starting their English journey.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484693438-07rkdlqa.jpg",
imageAlt: "Beginner English course"
},
{
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",
imageAlt: "Intermediate English course"
},
{
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",
imageAlt: "Advanced English course"
},
{
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",
imageAlt: "Certification programs"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
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="invertDefault"
onSubmit={(email) => console.log("Email submitted:", email)}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseSocial
logoText="English Dom"
description="Master English fluency with expert instructors and proven methodology."
columns={[
{
title: "Navigation",
items: [
{ label: "Home", href: "hero" },
{ label: "About Us", href: "about" },
{ label: "Courses", href: "features" }
]
},
{
title: "Resources",
items: [
{ label: "Blog", href: "#" },
{ label: "FAQs", href: "#" },
{ label: "Contact", href: "contact" }
]
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Sitemap", href: "#" }
]
}
]}
socialLinks={[
{ icon: Youtube, href: "https://youtube.com", ariaLabel: "YouTube" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" }
]}
copyrightText="© 2025 | English Dom"
onPrivacyClick={() => console.log("Privacy clicked")}
/>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }