Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-01-03 14:41:04 +00:00
2 changed files with 14 additions and 17 deletions

View File

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

View File

@@ -2,7 +2,7 @@
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';
@@ -10,6 +10,7 @@ import TestimonialCardEleven from '@/components/sections/testimonial/Testimonial
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Package, Trophy } from 'lucide-react';
export default function SuppleLabs() {
return (
@@ -39,20 +40,16 @@ export default function SuppleLabs() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
slides={[
{
id: "1",
title: "Premium Supplements for Peak Performance",
description: "Elevate your health and fitness with science-backed supplements designed for real results",
tag: "Shop Now",
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" }
]
}
<HeroSplitLarge
title="Premium Supplements for Peak Performance"
description="Elevate your health and fitness with science-backed supplements designed for real results"
tag="Shop Now"
tagIcon={Package}
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" }
]}
/>
</div>
@@ -298,4 +295,4 @@ export default function SuppleLabs() {
</div>
</ThemeProvider>
);
}
}