Update src/app/gallery/page.tsx

This commit is contained in:
2026-04-08 18:23:17 +00:00
parent ce2e3b8782
commit ac590321dd

View File

@@ -2,96 +2,23 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="blurBottom"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book a Table", href: "/contact"}}
brandName="Aura Bistro"
/>
</div>
<div id="gallery-grid" data-section="gallery-grid">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Main Dining Room", description: "Elegant and intimate atmosphere.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg", imageAlt: "happy customer dining experience restaurant"
},
items: [],
reverse: false,
},
{
title: "The Chef's Corner", description: "Witness the magic of culinary art.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg", imageAlt: "modern restaurant interior decor details"
},
items: [],
reverse: true,
},
{
title: "Private Lounge", description: "Perfect for private celebrations.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-friends-night-having-dinner_23-2149190935.jpg", imageAlt: "luxury restaurant ambiance evening warm"
},
items: [],
reverse: false,
},
]}
title="Art of Ambiance"
description="A glimpse into our world."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Behind the Scenes"
description="See the passion in every detail."
features={[
{
title: "Kitchen Prep", description: "Meticulous work.", imageSrc: "http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Bistro"
copyrightText="© 2025 Aura Bistro. All rights reserved."
/>
</div>
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Reviews", id: "/reviews"}, {name: "Gallery", id: "/gallery"}]} brandName="Aura Bistro" />
<div className="py-24 px-6 text-center">
<h1 className="text-4xl font-bold mb-8">Restaurant Gallery</h1>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<img src="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg" alt="Restaurant interior" className="rounded-lg shadow-lg" />
<img src="http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg" alt="Fine dining dish" className="rounded-lg shadow-lg" />
<img src="http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg" alt="Service staff" className="rounded-lg shadow-lg" />
</div>
</div>
<FooterCard logoText="Aura Bistro" />
</ReactLenis>
</ThemeProvider>
);