Update src/app/gallery/page.tsx

This commit is contained in:
2026-01-22 11:47:14 +00:00
parent 798bec8fc8
commit b7605f241a

View File

@@ -5,7 +5,6 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from 'next/link';
import { Sparkles } from 'lucide-react'; import { Sparkles } from 'lucide-react';
export default function GalleryPage() { export default function GalleryPage() {
@@ -32,8 +31,7 @@ export default function GalleryPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Book Consultation", text: "Book Consultation", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -46,36 +44,16 @@ export default function GalleryPage() {
tagIcon={Sparkles} tagIcon={Sparkles}
products={[ products={[
{ {
id: "1", id: "1", name: "Garden Paradise Bouquet", price: "$120", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-boho-flowers-assortment_23-2149526015.jpg", imageAlt: "Garden paradise arrangement", initialQuantity: 1
name: "Garden Paradise Bouquet",
price: "$120",
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-boho-flowers-assortment_23-2149526015.jpg",
imageAlt: "Garden paradise arrangement",
initialQuantity: 1
}, },
{ {
id: "2", id: "2", name: "Elegant Rose Collection", price: "$95", imageSrc: "https://img.b2bpic.net/free-photo/rose-wooden-background_1232-2088.jpg", imageAlt: "Elegant rose collection", initialQuantity: 1
name: "Elegant Rose Collection",
price: "$95",
imageSrc: "https://img.b2bpic.net/free-photo/rose-wooden-background_1232-2088.jpg",
imageAlt: "Elegant rose collection",
initialQuantity: 1
}, },
{ {
id: "3", id: "3", name: "Seasonal Wildflower Mix", price: "$75", imageSrc: "https://img.b2bpic.net/free-photo/elevated-view-red-rose-flower-vase_23-2148181221.jpg", imageAlt: "Wildflower arrangement", initialQuantity: 1
name: "Seasonal Wildflower Mix",
price: "$75",
imageSrc: "https://img.b2bpic.net/free-photo/elevated-view-red-rose-flower-vase_23-2148181221.jpg",
imageAlt: "Wildflower arrangement",
initialQuantity: 1
}, },
{ {
id: "4", id: "4", name: "Luxury Bridal Bouquet", price: "$180", imageSrc: "https://img.b2bpic.net/free-photo/bouquet-roses-with-red-bow_23-2147591160.jpg", imageAlt: "Luxury bridal bouquet", initialQuantity: 1
name: "Luxury Bridal Bouquet",
price: "$180",
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-roses-with-red-bow_23-2147591160.jpg",
imageAlt: "Luxury bridal bouquet",
initialQuantity: 1
} }
]} ]}
textboxLayout="default" textboxLayout="default"