Merge version_2 into main #1

Merged
development merged 2 commits from version_2 into main 2026-01-03 14:37:04 +00:00
2 changed files with 20 additions and 35 deletions

View File

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

View File

@@ -1,8 +1,8 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import HeroSplitLarge from '@/components/sections/hero/HeroSplitLarge';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
@@ -39,36 +39,12 @@ export default function SuppleLabs() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
<HeroSplitLarge
title="Premium Supplements for Peak Performance"
description="Elevate your health and fitness with science-backed supplements designed for real results"
tag="Shop Now"
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450501525-2z6ffwci.jpg",
imageAlt: "Premium supplement bottle collection"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450501963-tpqqsdz5.jpg",
imageAlt: "Protein powder supplement"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450502298-j7svmze9.jpg",
imageAlt: "Multivitamin capsules"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450502591-j4lopemt.jpg",
imageAlt: "Complete supplement stack"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450503066-kcqkzbrt.jpg",
imageAlt: "Sports nutrition products"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450503456-n755hzev.jpg",
imageAlt: "Organic supplement collection"
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450501525-2z6ffwci.jpg"
imageAlt="Premium supplement bottle collection"
buttons={[
{ text: "Explore Products", href: "products" },
{ text: "Learn More", href: "about" }
@@ -168,6 +144,7 @@ export default function SuppleLabs() {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450505972-ot2l2fm6.jpg"
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
@@ -181,29 +158,37 @@ export default function SuppleLabs() {
testimonials={[
{
id: "1",
nameTitle: "Sarah Mitchell, Fitness Coach",
title: "Game-changer for my clients",
quote: "SuppleLabs products have been game-changers for my clients. The quality is unmatched and results speak for themselves.",
name: "Sarah Mitchell",
role: "Fitness Coach",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450506622-4u9regpr.jpg",
imageAlt: "Sarah Mitchell"
},
{
id: "2",
nameTitle: "James Chen, Professional Athlete",
title: "Superior quality and effectiveness",
quote: "I've tried many supplement brands, but SuppleLabs consistently delivers superior quality and effectiveness.",
name: "James Chen",
role: "Professional Athlete",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450506912-2i6eh0ge.jpg",
imageAlt: "James Chen"
},
{
id: "3",
nameTitle: "Emma Rodriguez, Health Enthusiast",
title: "Remarkable difference",
quote: "The difference in how I feel after using SuppleLabs is remarkable. Highly recommended for anyone serious about wellness.",
name: "Emma Rodriguez",
role: "Health Enthusiast",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450507439-jy4o24u6.jpg",
imageAlt: "Emma Rodriguez"
},
{
id: "4",
nameTitle: "Michael Torres, Nutritionist",
title: "Commitment to quality is unparalleled",
quote: "As a nutritionist, I recommend SuppleLabs to all my clients. Their commitment to quality is unparalleled.",
name: "Michael Torres",
role: "Nutritionist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767450507755-5escfu1t.jpg",
imageAlt: "Michael Torres"
}
@@ -310,4 +295,4 @@ export default function SuppleLabs() {
</div>
</ThemeProvider>
);
}
}