Compare commits
15 Commits
version_8
...
d7793c0fc7
| Author | SHA1 | Date | |
|---|---|---|---|
| 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,7 +1,7 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
@@ -35,12 +35,31 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboardCarousel
|
||||||
title="English Dom"
|
title="English Dom"
|
||||||
description="Master English fluency with expert instructors. Interactive lessons designed for all levels."
|
description="Master English fluency with expert instructors. Interactive lessons designed for all levels."
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg"
|
mediaItems={[
|
||||||
imageAlt="English Dom learning experience"
|
{
|
||||||
frameStyle="card"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484689467-d854773z.jpg",
|
||||||
|
imageAlt: "English Dom learning experience"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484692441-ky6zbpw9.jpg",
|
||||||
|
imageAlt: "English Dom learning center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484693438-07rkdlqa.jpg",
|
||||||
|
imageAlt: "Beginner English course"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg",
|
||||||
|
imageAlt: "Intermediate English course"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484695254-p59fsyqd.jpg",
|
||||||
|
imageAlt: "Advanced English course"
|
||||||
|
}
|
||||||
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Trial", href: "contact" },
|
{ text: "Start Trial", href: "contact" },
|
||||||
{ text: "All Courses", href: "features" }
|
{ text: "All Courses", href: "features" }
|
||||||
|
|||||||
Reference in New Issue
Block a user