4 Commits

Author SHA1 Message Date
d5b83e1095 Update src/app/page.tsx 2025-12-25 07:57:31 +00:00
6dd213bcf2 Update src/app/page.tsx 2025-12-24 15:54:28 +00:00
bd2d2cd270 Update src/app/layout.tsx 2025-12-24 15:54:27 +00:00
2a24639600 Update src/app/globals.css 2025-12-24 15:54:26 +00:00
3 changed files with 9 additions and 37 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #000000;
--card: #1b1b1b;
--foreground: #ffffff;
--primary-cta: #ffcc00;
--secondary-cta: #151515;
--accent: #303030;
--background-accent: #303030;
--background: #ffffff;
--card: #fcfcfc;
--foreground: #120006e6;
--primary-cta: #e63946;
--secondary-cta: #ffffff;
--accent: #ffcf40;
--background-accent: #ffd966;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1277,4 +1277,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -5,7 +5,6 @@ import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCa
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';
@@ -183,33 +182,6 @@ export default function LandingPage() {
/>
</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"
@@ -402,4 +374,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}