Update src/app/events/page.tsx

This commit is contained in:
2026-04-22 13:11:59 +00:00
parent 319a108638
commit f49df7a203

View File

@@ -8,23 +8,27 @@ import FooterCard from '@/components/sections/footer/FooterCard';
export default function EventsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/#menu" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/#contact" },
]}
brandName="The Table"
/>
<div className="pt-32 pb-20">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
brandName="The Table"
button={{ text: "View Full Calendar", href: "#contact" }}
/>
</div>
<div id="events" data-section="events">
<MetricCardEleven
animationType="slide-up"
title="Join Our Recurring Events"
description="Discover our weekly culinary traditions and special community gatherings. Book your spot today!"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{
id: "e1", value: "Weekly", title: "Sunday Brunch Club", description: "Farm-fresh seasonal brunch menu every Sunday. RSVP required to secure your favorite corner table.", imageSrc: "http://img.b2bpic.net/free-photo/group-young-friends-having-dinner-together_23-2148454081.jpg"
@@ -39,7 +43,9 @@ export default function EventsPage() {
buttons={[{ text: "View Full Calendar", href: "#contact" }]}
/>
</div>
<FooterCard logoText="The Table" copyrightText="© 2025 The Table Restaurant" />
<div id="footer" data-section="footer">
<FooterCard logoText="The Table" copyrightText="© 2025 The Table Restaurant" />
</div>
</ReactLenis>
</ThemeProvider>
);