Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb5999d56a | |||
| f50dce1440 | |||
| 668bea63d3 | |||
| efc6406426 | |||
| 658399a409 | |||
| d7793c0fc7 | |||
| b01f7667ba | |||
| 9038924941 | |||
| d4c67904fa | |||
| c9fc323f73 | |||
| 5a7b7ad0bf | |||
| 96e65f76f5 | |||
| 24941c97a4 | |||
| faa6ce8756 | |||
| 9dc9aa8154 | |||
| 85bd29379a | |||
| 96da8c6e5c | |||
| a43b3407b2 | |||
| fb9781321b | |||
| d348d088f2 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #000000;
|
||||||
--card: #fcfcfc;
|
--card: #1b1b1b;
|
||||||
--foreground: #120006e6;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #e63946;
|
--primary-cta: #ff0000;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #151515;
|
||||||
--accent: #ffcf40;
|
--accent: #303030;
|
||||||
--background-accent: #ffd966;
|
--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);
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
216
src/app/page.tsx
216
src/app/page.tsx
@@ -1,168 +1,78 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
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 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">
|
||||||
<NavbarStyleApple
|
<NavbarStyleMinimal
|
||||||
navItems={[
|
brandName="Webild"
|
||||||
{ name: "Home", id: "hero" },
|
button={{ text: "Get Started", href: "https://webild.io" }}
|
||||||
{ 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">
|
||||||
<HeroBillboard
|
<div className="w-full bg-gradient-to-b from-background via-background to-card py-16 px-4 md:px-8">
|
||||||
title="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">
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg"
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
imageAlt="English Dom learning experience"
|
<img
|
||||||
frameStyle="card"
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
buttons={[
|
alt="Portfolio item 1"
|
||||||
{ text: "Start Trial", href: "contact" },
|
className="w-full h-full object-cover"
|
||||||
{ text: "All Courses", href: "features" }
|
/>
|
||||||
]}
|
</div>
|
||||||
/>
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
</div>
|
<img
|
||||||
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
<div id="about" data-section="about">
|
alt="Portfolio item 2"
|
||||||
<SplitAbout
|
className="w-full h-full object-cover"
|
||||||
title="Transforming English Education Since 2015"
|
/>
|
||||||
description="We believe learning English should be engaging, accessible, and effective for everyone."
|
</div>
|
||||||
textboxLayout="default"
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
useInvertedBackground="noInvert"
|
<img
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg"
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
imageAlt="English Dom learning center"
|
alt="Portfolio item 3"
|
||||||
imagePosition="right"
|
className="w-full h-full object-cover"
|
||||||
bulletPoints={[
|
/>
|
||||||
{
|
</div>
|
||||||
title: "Expert Instruction",
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
description: "Certified instructors with proven teaching excellence"
|
<img
|
||||||
},
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
{
|
alt="Portfolio item 4"
|
||||||
title: "Modern Methodology",
|
className="w-full h-full object-cover"
|
||||||
description: "Cutting-edge technology meets traditional teaching"
|
/>
|
||||||
},
|
</div>
|
||||||
{
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
title: "Personalized Learning",
|
<img
|
||||||
description: "Customized experiences for speaking, listening, reading, and writing"
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
}
|
alt="Portfolio item 5"
|
||||||
]}
|
className="w-full h-full object-cover"
|
||||||
buttons={[
|
/>
|
||||||
{ text: "Learn More", href: "contact" }
|
</div>
|
||||||
]}
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
/>
|
<img
|
||||||
</div>
|
src="/placeholders/placeholder-16-9.svg"
|
||||||
|
alt="Portfolio item 6"
|
||||||
<div id="features" data-section="features">
|
className="w-full h-full object-cover"
|
||||||
<FeatureCardOne
|
/>
|
||||||
title="Comprehensive Course Levels"
|
</div>
|
||||||
description="From complete beginner to advanced proficiency, our structured programs ensure steady progress."
|
</div>
|
||||||
textboxLayout="default"
|
</div>
|
||||||
useInvertedBackground="noInvert"
|
</div>
|
||||||
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>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user