Update src/app/page.tsx

This commit is contained in:
2026-03-03 11:15:59 +00:00
parent 2cda72404b
commit c22a994c23

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
@@ -60,7 +60,7 @@ export default function LandingPage() {
</div>
<div id="gallery" data-section="gallery">
<ProductCardOne
<ProductCardFour
title="Featured Arrangements"
description="Discover our exquisite collection of handcrafted floral designs, each created with passion and precision."
tag="Our Gallery"
@@ -68,13 +68,13 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1", name: "Romance Rose", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-pink-roses-single-branch-rose-with-green-leaves-inside-vase_114579-1440.jpg?_wi=1", imageAlt: "Romantic rose arrangement"
id: "1", name: "Romance Rose", price: "$95", variant: "Premium Red", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-pink-roses-single-branch-rose-with-green-leaves-inside-vase_114579-1440.jpg?_wi=1", imageAlt: "Romantic rose arrangement"
},
{
id: "2", name: "Bridal Dreams", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-flowers_1157-18354.jpg?_wi=1", imageAlt: "Elegant bridal bouquet"
id: "2", name: "Bridal Dreams", price: "$150", variant: "White & Cream", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-flowers_1157-18354.jpg?_wi=1", imageAlt: "Elegant bridal bouquet"
},
{
id: "3", name: "Spring Garden", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-colorful-tulips-baby-s-breath-flower-wooden-desk_23-2148048500.jpg?_wi=1", imageAlt: "Colorful spring arrangement"
id: "3", name: "Spring Garden", price: "$85", variant: "Colorful Mix", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-colorful-tulips-baby-s-breath-flower-wooden-desk_23-2148048500.jpg?_wi=1", imageAlt: "Colorful spring arrangement"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -203,4 +203,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}