Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-28 12:22:58 +00:00
parent ef2ef8a8c5
commit 481dab3705

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -26,38 +26,30 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
name: "Home", id: "/"
},
{
name: "Menu",
id: "/menu",
name: "Menu", id: "/menu"
},
{
name: "Events",
id: "/events",
name: "Events", id: "/events"
},
{
name: "Bookings",
id: "/bookings",
name: "Bookings", id: "/bookings"
},
{
name: "Gallery",
id: "/gallery",
name: "Gallery", id: "/gallery"
},
{
name: "About",
id: "/about",
name: "About", id: "/about"
},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"
}
]}
brandName="The Southfields"
button={{
text: "Book a Table",
href: "/bookings",
text: "Book a Table", href: "/bookings"
}}
/>
</div>
@@ -67,49 +59,26 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
animationType="blur-reveal"
products={[
{
id: "gallery-1",
name: "Gourmet Dish",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-cookie-pastries-inside-blue-plate-light-table-cake-biscuit-sugar-sweet-pastry-bake_140725-24479.jpg",
imageAlt: "Close-up of a perfectly plated gourmet dish",
id: "gallery-1", name: "Gourmet Dish", price: "", imageSrc: "asset://gallery-dish-1__2", imageAlt: "Close-up of a perfectly plated gourmet dish"
},
{
id: "gallery-2",
name: "Signature Cocktail",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/view-cocktail-drink-glass-with-neo-futuristic-set_23-2150938286.jpg",
imageAlt: "A refreshing cocktail being prepared by a bartender",
id: "gallery-2", name: "Signature Cocktail", price: "", imageSrc: "asset://gallery-dish-2__2", imageAlt: "A refreshing cocktail being prepared by a bartender"
},
{
id: "gallery-3",
name: "Vibrant Interior",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-mobile-phone-man_1170-651.jpg",
imageAlt: "Warm and inviting pub interior with patrons",
id: "gallery-3", name: "Vibrant Interior", price: "", imageSrc: "asset://gallery-ambiance-1", imageAlt: "Warm and inviting pub interior with patrons"
},
{
id: "gallery-4",
name: "Live Performance",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215880.jpg",
imageAlt: "Live music performance in the pub",
id: "gallery-4", name: "Live Performance", price: "", imageSrc: "asset://gallery-ambiance-2__2", imageAlt: "Live music performance in the pub"
},
{
id: "gallery-5",
name: "Beer Garden",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/seat-glass-bright-food-window_1232-3762.jpg",
imageAlt: "Sunny outdoor beer garden seating area",
id: "gallery-5", name: "Beer Garden", price: "", imageSrc: "asset://gallery-outdoor-1", imageAlt: "Sunny outdoor beer garden seating area"
},
{
id: "gallery-6",
name: "Luxury Bar",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-girl-uses-smartphone-street-surfing-internet_1296-770.jpg",
imageAlt: "Elegant bar area with wide selection of spirits",
},
id: "gallery-6", name: "Luxury Bar", price: "", imageSrc: "asset://gallery-cocktail-bar", imageAlt: "Elegant bar area with wide selection of spirits"
}
]}
title="Our Visual Story"
description="A collection of moments, dishes, and spaces that capture the essence of The Southfields."
@@ -122,28 +91,17 @@ export default function LandingPage() {
<FeatureCardTwentyEight
textboxLayout="default"
useInvertedBackground={true}
animationType="blur-reveal"
features={[
{
id: "food-art",
title: "Culinary Artistry",
subtitle: "Discover the passion and precision behind every dish, beautifully plated and ready to delight your senses.",
category: "Food",
value: "Exquisite",
id: "food-art", title: "Culinary Artistry", subtitle: "Discover the passion and precision behind every dish, beautifully plated and ready to delight your senses.", category: "Food", value: "Exquisite"
},
{
id: "mixology-magic",
title: "Mixology Magic",
subtitle: "Explore our expertly crafted cocktails and diverse drink selection, designed for every palate and occasion.",
category: "Drinks",
value: "Creative",
id: "mixology-magic", title: "Mixology Magic", subtitle: "Explore our expertly crafted cocktails and diverse drink selection, designed for every palate and occasion.", category: "Drinks", value: "Creative"
},
{
id: "lively-spaces",
title: "Lively Spaces",
subtitle: "Immerse yourself in the warm and inviting ambiance of our pub, from cozy corners to vibrant event areas.",
category: "Venue",
value: "Dynamic",
},
id: "lively-spaces", title: "Lively Spaces", subtitle: "Immerse yourself in the warm and inviting ambiance of our pub, from cozy corners to vibrant event areas.", category: "Venue", value: "Dynamic"
}
]}
title="Experience The Southfields Through Our Lens"
description="Dive into our gallery and get a taste of what makes The Southfields Bolton's favorite social pub. From our vibrant atmosphere to our delectable dishes, every image tells a story."
@@ -156,64 +114,50 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Explore",
items: [
title: "Explore", items: [
{
label: "Home",
href: "/",
label: "Home", href: "/"
},
{
label: "Menu",
href: "/menu",
label: "Menu", href: "/menu"
},
{
label: "Events",
href: "/events",
label: "Events", href: "/events"
},
{
label: "Gallery",
href: "/gallery",
},
],
label: "Gallery", href: "/gallery"
}
]
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
label: "About Us", href: "/about"
},
{
label: "Contact",
href: "/contact",
label: "Contact", href: "/contact"
},
{
label: "Bookings",
href: "/bookings",
label: "Bookings", href: "/bookings"
},
{
label: "Privacy Policy",
href: "#",
},
],
label: "Privacy Policy", href: "#"
}
]
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Facebook",
href: "#",
label: "Facebook", href: "#"
},
{
label: "Instagram",
href: "#",
label: "Instagram", href: "#"
},
{
label: "TikTok",
href: "#",
},
],
},
label: "TikTok", href: "#"
}
]
}
]}
bottomLeftText="© 2024 The Southfields. All rights reserved."
bottomRightText="Built with ❤️ in Bolton"