Update src/app/gallery/page.tsx
This commit is contained in:
@@ -19,8 +19,7 @@ export default function GalleryPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Dining",
|
||||
items: [
|
||||
title: "Dining", items: [
|
||||
{ label: "Menu", href: "/" },
|
||||
{ label: "Reservations", href: "/" },
|
||||
{ label: "Order Online", href: "/order" },
|
||||
@@ -28,8 +27,7 @@ export default function GalleryPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "/" },
|
||||
{ label: "Chef Biography", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
@@ -37,8 +35,7 @@ export default function GalleryPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "Contact Us", href: "/" },
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Newsletter", href: "/" },
|
||||
@@ -54,7 +51,7 @@ export default function GalleryPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -68,9 +65,7 @@ export default function GalleryPage() {
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Reserve Table",
|
||||
href: "/",
|
||||
}}
|
||||
text: "Reserve Table", href: "/"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,71 +81,29 @@ export default function GalleryPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Culinary Haven",
|
||||
name: "Fine Dining Ambiance",
|
||||
price: "Experience",
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199326.jpg",
|
||||
imageAlt: "Fine dining room atmosphere",
|
||||
},
|
||||
id: "1", brand: "Culinary Haven", name: "Fine Dining Ambiance", price: "Experience", rating: 5,
|
||||
reviewCount: "156", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199326.jpg", imageAlt: "Fine dining room atmosphere"},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Culinary Haven",
|
||||
name: "Gourmet Plating",
|
||||
price: "Art",
|
||||
rating: 5,
|
||||
reviewCount: "298",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/salmon-bruschetta-with-cucumber-mozzarella-dill-red-onion-dried-tomato-lime_141793-2269.jpg?_wi=2",
|
||||
imageAlt: "Artfully plated gourmet dish",
|
||||
},
|
||||
id: "2", brand: "Culinary Haven", name: "Gourmet Plating", price: "Art", rating: 5,
|
||||
reviewCount: "298", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/salmon-bruschetta-with-cucumber-mozzarella-dill-red-onion-dried-tomato-lime_141793-2269.jpg", imageAlt: "Artfully plated gourmet dish"},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Culinary Haven",
|
||||
name: "Restaurant Interior",
|
||||
price: "Elegance",
|
||||
rating: 5,
|
||||
reviewCount: "189",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/served-table-restaurant_93675-129581.jpg?_wi=6",
|
||||
imageAlt: "Elegant restaurant table setting",
|
||||
},
|
||||
id: "3", brand: "Culinary Haven", name: "Restaurant Interior", price: "Elegance", rating: 5,
|
||||
reviewCount: "189", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/served-table-restaurant_93675-129581.jpg", imageAlt: "Elegant restaurant table setting"},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Culinary Haven",
|
||||
name: "Family Moments",
|
||||
price: "Joy",
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/friends-having-fun-together-while-cooking_23-2149306409.jpg",
|
||||
imageAlt: "Family enjoying a meal together",
|
||||
},
|
||||
id: "4", brand: "Culinary Haven", name: "Family Moments", price: "Joy", rating: 5,
|
||||
reviewCount: "267", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/friends-having-fun-together-while-cooking_23-2149306409.jpg", imageAlt: "Family enjoying a meal together"},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Culinary Haven",
|
||||
name: "Signature Dish",
|
||||
price: "Passion",
|
||||
rating: 5,
|
||||
reviewCount: "412",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-with-red-drink_114579-16566.jpg?_wi=4",
|
||||
imageAlt: "Signature culinary creation",
|
||||
},
|
||||
id: "5", brand: "Culinary Haven", name: "Signature Dish", price: "Passion", rating: 5,
|
||||
reviewCount: "412", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-with-red-drink_114579-16566.jpg", imageAlt: "Signature culinary creation"},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Culinary Haven",
|
||||
name: "Premium Preparation",
|
||||
price: "Craftsmanship",
|
||||
rating: 5,
|
||||
reviewCount: "334",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-shrimp-teriyaki-sauce-served-with-fettuccini_140725-5180.jpg?_wi=4",
|
||||
imageAlt: "Chef preparing a premium dish",
|
||||
},
|
||||
id: "6", brand: "Culinary Haven", name: "Premium Preparation", price: "Craftsmanship", rating: 5,
|
||||
reviewCount: "334", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-shrimp-teriyaki-sauce-served-with-fettuccini_140725-5180.jpg", imageAlt: "Chef preparing a premium dish"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -164,25 +117,20 @@ export default function GalleryPage() {
|
||||
description="Visit Culinary Haven and discover the elegance, flavors, and ambiance that our guests love. Reserve your table today for an unforgettable dining experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Make a Reservation",
|
||||
href: "/",
|
||||
},
|
||||
text: "Make a Reservation", href: "/"},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/order",
|
||||
},
|
||||
text: "View Menu", href: "/order"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "grid",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/served-table-restaurant_93675-129581.jpg?_wi=7"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/served-table-restaurant_93675-129581.jpg"
|
||||
imageAlt="Elegant restaurant interior"
|
||||
logoText="Culinary Haven"
|
||||
copyrightText="© 2025 Culinary Haven. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user