Update src/app/gallery/page.tsx

This commit is contained in:
2026-06-03 15:46:34 +00:00
parent e48cd56e81
commit db53de8311

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Reviews",
id: "/reviews",
},
name: "Reviews", id: "/reviews"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/top-view-lemon-tart-plate_23-2148519057.jpg"
logoAlt="Flavor Fusion Bistro Logo"
@@ -59,59 +49,29 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "gallery-1",
title: "Signature Cocktail",
tags: [
"Drinks",
],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-appetizing-soup-with-spoon_1220-350.jpg",
imageAlt: "Artfully plated dessert with chocolate",
},
id: "gallery-1", title: "Signature Cocktail", tags: [
"Drinks"],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-appetizing-soup-with-spoon_1220-350.jpg", imageAlt: "Artfully plated dessert with chocolate"},
{
id: "gallery-2",
title: "Chef's Special Pasta",
tags: [
"Main Course",
],
imageSrc: "http://img.b2bpic.net/free-photo/pate-decorated-with-cucumbers-carrots-jug-with-compote-top-view_140725-9922.jpg",
imageAlt: "Colorful cocktail at a bar",
},
id: "gallery-2", title: "Chef's Special Pasta", tags: [
"Main Course"],
imageSrc: "http://img.b2bpic.net/free-photo/pate-decorated-with-cucumbers-carrots-jug-with-compote-top-view_140725-9922.jpg", imageAlt: "Colorful cocktail at a bar"},
{
id: "gallery-3",
title: "Freshly Baked Bread",
tags: [
"Appetizer",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-snacks-salad-table_23-2148454128.jpg",
imageAlt: "Freshly baked bread in a basket",
},
id: "gallery-3", title: "Freshly Baked Bread", tags: [
"Appetizer"],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-snacks-salad-table_23-2148454128.jpg", imageAlt: "Freshly baked bread in a basket"},
{
id: "gallery-4",
title: "Elegant Dining Setup",
tags: [
"Ambiance",
],
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-mozarella-tomato-slices-with-basilic-herbal-dressing_114579-3682.jpg",
imageAlt: "Appetizer spread with elegant serving",
},
id: "gallery-4", title: "Elegant Dining Setup", tags: [
"Ambiance"],
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-mozarella-tomato-slices-with-basilic-herbal-dressing_114579-3682.jpg", imageAlt: "Appetizer spread with elegant serving"},
{
id: "gallery-5",
title: "Decadent Dessert",
tags: [
"Dessert",
],
imageSrc: "http://img.b2bpic.net/free-photo/little-delicious-brownies-with-chocolate-chips-inside-brown-plate-wood_140725-30041.jpg",
imageAlt: "Delicious soup bowl with garnishing",
},
id: "gallery-5", title: "Decadent Dessert", tags: [
"Dessert"],
imageSrc: "http://img.b2bpic.net/free-photo/little-delicious-brownies-with-chocolate-chips-inside-brown-plate-wood_140725-30041.jpg", imageAlt: "Delicious soup bowl with garnishing"},
{
id: "gallery-6",
title: "Kitchen Creativity",
tags: [
"Behind The Scenes",
],
imageSrc: "http://img.b2bpic.net/free-photo/chef-with-plate-with-rolls_23-2148482439.jpg",
imageAlt: "A chef preparing food in the kitchen",
},
id: "gallery-6", title: "Kitchen Creativity", tags: [
"Behind The Scenes"],
imageSrc: "http://img.b2bpic.net/free-photo/chef-with-plate-with-rolls_23-2148482439.jpg", imageAlt: "A chef preparing food in the kitchen"},
]}
title="Moments & Flavors"
description="Explore the vibrant atmosphere and artfully presented dishes from our kitchen and dining area. A visual feast showcasing our passion for food and aesthetics."
@@ -133,54 +93,33 @@ export default function LandingPage() {
logoText="Flavor Fusion Bistro"
columns={[
{
title: "Explore",
items: [
title: "Explore", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Menu",
href: "/menu",
},
label: "Menu", href: "/menu"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
],
},
{
title: "About Us",
items: [
title: "About Us", items: [
{
label: "Our Story",
href: "/#about",
},
label: "Our Story", href: "/#about"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Reservations",
href: "/contact",
},
label: "Reservations", href: "/contact"},
],
},
]}
@@ -190,4 +129,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}