Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-12 18:46:20 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
@@ -40,7 +40,7 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
<HeroBillboardGallery
title="Exquisite Girls Jewelry Collection"
description="Discover stunning bracelets, earrings, rings, and more. Handpicked pieces designed to make every girl shine with confidence and elegance and boys now u have really something to gift without confusion"
tag="New Collection"
@@ -52,28 +52,24 @@ export default function LandingPage() {
{ text: "Learn More" }
]}
buttonAnimation="slide-up"
carouselItems={[
mediaItems={[
{
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-wearing-gold-bracelet_23-2149836442.jpg", imageAlt: "Gold Bracelet Collection"
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-wearing-gold-bracelet_23-2149836442.jpg", imageAlt: "Gold Bracelet Collection"
},
{
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-bride-posing-against-window-hotel-room_1153-6031.jpg", imageAlt: "Pearl Earrings Set"
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-bride-posing-against-window-hotel-room_1153-6031.jpg", imageAlt: "Pearl Earrings Set"
},
{
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-pieces-expensive-golden-jewelry-store_181624-33812.jpg", imageAlt: "Crystal Ring Collection"
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-pieces-expensive-golden-jewelry-store_181624-33812.jpg", imageAlt: "Crystal Ring Collection"
},
{
id: "4", imageSrc: "http://img.b2bpic.net/free-vector/jewelry-composition-set_1284-22891.jpg", imageAlt: "Diamond Pendant"
imageSrc: "http://img.b2bpic.net/free-vector/jewelry-composition-set_1284-22891.jpg", imageAlt: "Diamond Pendant"
},
{
id: "5", imageSrc: "http://img.b2bpic.net/free-vector/hand-painted-watercolor-boho-frame_52683-66614.jpg", imageAlt: "Gemstone Bracelet"
},
{
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-fashion-stylish-brunette-woman-model-with-evening-makeup-red-lips-white-jacket_158538-11561.jpg", imageAlt: "Vintage Earrings"
imageSrc: "http://img.b2bpic.net/free-vector/hand-painted-watercolor-boho-frame_52683-66614.jpg", imageAlt: "Gemstone Bracelet"
}
]}
autoPlay={true}
autoPlayInterval={4000}
mediaAnimation="slide-up"
/>
</div>
@@ -256,4 +252,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}