Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-13 11:18:55 +00:00
parent c5caa37d58
commit 370cdec046

View File

@@ -25,30 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Collections",
id: "/collections",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Custom Orders",
id: "/custom",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Collections", id: "/collections" },
{ name: "Gallery", id: "/gallery" },
{ name: "Custom Orders", id: "/custom" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Help", id: "/help" }
]}
brandName="EverBloom Bridal"
/>
@@ -59,46 +42,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
title: "Bridal Bouquet",
quote: "Stunning ivory roses.",
name: "Anjali V.",
role: "Bride",
imageSrc: "http://img.b2bpic.net/free-photo/white-surface-with-several-flowers-romantic-heart_23-2147601282.jpg",
},
{
id: "2",
title: "Flower Crown",
quote: "Beautifully handcrafted.",
name: "Sonia R.",
role: "Bride",
imageSrc: "http://img.b2bpic.net/free-photo/wedding-day-details-bridal-bouquet-shoes-accessories_23-2151976648.jpg",
},
{
id: "3",
title: "Ring Cushion",
quote: "Exquisite details.",
name: "Meera K.",
role: "Bride",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248847.jpg",
},
{
id: "4",
title: "Boutonniere",
quote: "Perfect accent.",
name: "Kiran S.",
role: "Groom",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g22xro",
},
{
id: "5",
title: "Coordinated Set",
quote: "Loved the matching set.",
name: "Neha P.",
role: "Bride",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248845.jpg",
},
{ id: "1", title: "Bridal Bouquet", quote: "Stunning ivory roses.", name: "Anjali V.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/white-surface-with-several-flowers-romantic-heart_23-2147601282.jpg" },
{ id: "2", title: "Flower Crown", quote: "Beautifully handcrafted.", name: "Sonia R.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/wedding-day-details-bridal-bouquet-shoes-accessories_23-2151976648.jpg" },
{ id: "3", title: "Ring Cushion", quote: "Exquisite details.", name: "Meera K.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248847.jpg" },
{ id: "4", title: "Boutonniere", quote: "Perfect accent.", name: "Kiran S.", role: "Groom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g22xro" },
{ id: "5", title: "Coordinated Set", quote: "Loved the matching set.", name: "Neha P.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248845.jpg" }
]}
title="Wedding Gallery"
description="Moments of beauty captured with our forever floral collection."
@@ -112,66 +60,13 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Impact"
description="Numbers that speak for our quality."
metrics={[
{
id: "m1",
value: "500+",
title: "Happy Brides",
description: "Satisfied customers in Bangalore.",
imageSrc: "http://img.b2bpic.net/free-photo/wrapped-gift-boxes-with-baby-s-breath-flowers-tag-with-candles-scissor-wedding-rings_23-2147936485.jpg",
},
]}
metrics={[{ id: "m1", value: "500+", title: "Happy Brides", description: "Satisfied customers in Bangalore.", imageSrc: "http://img.b2bpic.net/free-photo/wrapped-gift-boxes-with-baby-s-breath-flowers-tag-with-candles-scissor-wedding-rings_23-2147936485.jpg" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Collections",
href: "/collections",
},
{
label: "Gallery",
href: "/gallery",
},
],
},
{
items: [
{
label: "Custom Orders",
href: "/custom",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
logoText="EverBloom Bridal"
/>
</div>