Update src/app/page.tsx

This commit is contained in:
2026-05-07 13:31:33 +00:00
parent b20364ba6b
commit 64ba5892b9

View File

@@ -11,6 +11,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function LandingPage() {
return (
@@ -34,6 +35,7 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Services", id: "products" },
{ name: "Reviews", id: "google-reviews" },
{ name: "Contact", id: "contact" },
]}
brandName="CDLC Academy"
@@ -111,6 +113,20 @@ export default function LandingPage() {
/>
</div>
<div id="google-reviews" data-section="google-reviews">
<TestimonialCardTen
title="Google Reviews"
description="See what our students and clients are saying about their experiences at CDLC Academy."
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{ id: "rev1", title: "Life changing!", quote: "The training at CDLC was exactly what I needed to launch my massage career.", name: "Sarah M.", role: "Graduate" },
{ id: "rev2", title: "Professional setup", quote: "Incredible facilities and supportive teachers.", name: "James C.", role: "Graduate" },
{ id: "rev3", title: "Great learning environment", quote: "The small class sizes made all the difference in my comfort level and skills.", name: "Elena R.", role: "Student" },
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
animationType="slide-up"
@@ -185,4 +201,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}