Merge version_3 into main #15

Merged
bender merged 1 commits from version_3 into main 2026-03-04 00:31:36 +00:00

View File

@@ -6,8 +6,8 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import { PricingCardThree } from "@/components/sections/pricing/PricingCardThree";
import { TestimonialCardSixteen } from "@/components/sections/testimonial/TestimonialCardSixteen";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import { BookOpen, Heart, Shield, Sparkles, Wifi, Zap } from "lucide-react";
@@ -164,6 +164,13 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardThree
title={t.pricingTitle}
description={t.pricingDesc}
tag={language === "en" ? "Transparent Pricing" : "Tarification transparente"}
tagAnimation="slide-up"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "1", price: "$75", name: t.session30,
@@ -208,18 +215,18 @@ export default function LandingPage() {
]
}
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
tag={language === "en" ? "Transparent Pricing" : "Tarification transparente"}
tagAnimation="slide-up"
title={t.pricingTitle}
description={t.pricingDesc}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title={t.testimonialTitle}
description={t.testimonialDesc}
tag={language === "en" ? "Client Stories" : "Histoires de clients"}
tagAnimation="slide-up"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: language === "en" ? "Executive Director" : "Directrice exécutive", company: "Tech Innovation Lab", rating: 5,
@@ -243,13 +250,6 @@ export default function LandingPage() {
{ value: "98%", label: language === "en" ? "Client satisfaction rate" : "Taux de satisfaction client" },
{ value: "15+", label: language === "en" ? "Years of practice" : "Années de pratique" }
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
tag={language === "en" ? "Client Stories" : "Histoires de clients"}
tagAnimation="slide-up"
title={t.testimonialTitle}
description={t.testimonialDesc}
/>
</div>