Update src/app/gallery/page.tsx

This commit is contained in:
2026-04-30 06:29:09 +00:00
parent 3ddc9b4fb1
commit db95d86ab6

View File

@@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,32 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Menu",
id: "/menu",
},
{
name: "Experiences",
id: "/experiences",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Menu", id: "/menu" },
{ name: "Experiences", id: "/experiences" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="b Café"
button={{
text: "Reserve via WhatsApp",
href: "https://wa.me/...",
}}
button={{ text: "Reserve via WhatsApp", href: "https://wa.me/..." }}
/>
</div>
@@ -63,22 +45,8 @@ export default function LandingPage() {
title="Gallery"
description="A glimpse into the b Café experience."
products={[
{
id: "g1",
brand: "Interior",
name: "Lounge",
price: "Visual",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-image-red-coffee-cup-table_613910-12073.jpg",
},
{
id: "g2",
brand: "Culinary",
name: "Plating",
price: "Visual",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg",
},
{ id: "g1", brand: "Interior", name: "Lounge", price: "Visual", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/closeup-image-red-coffee-cup-table_613910-12073.jpg" },
{ id: "g2", brand: "Culinary", name: "Plating", price: "Visual", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg" },
]}
/>
</div>
@@ -86,16 +54,9 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="More stories await."
buttons={[
{
text: "Follow on IG",
href: "#",
},
]}
buttons={[{ text: "Follow on IG", href: "#" }]}
/>
</div>
@@ -103,45 +64,9 @@ export default function LandingPage() {
<FooterBaseCard
logoText="b Café"
columns={[
{
title: "Navigation",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
],
},
{
title: "Experiences",
items: [
{
label: "Brunch",
href: "/experiences",
},
{
label: "Celebrations",
href: "/experiences",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
{ title: "Experiences", items: [{ label: "Brunch", href: "/experiences" }, { label: "Celebrations", href: "/experiences" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>