Update src/app/events/page.tsx

This commit is contained in:
2026-04-22 13:08:21 +00:00
parent 1849ea761b
commit a4ac8369d9

View File

@@ -8,31 +8,42 @@ import FooterCard from '@/components/sections/footer/FooterCard';
export default function EventsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" 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: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="The Table"
button={{ text: "Order Now", href: "/menu" }}
/>
<div className="pt-32 pb-20">
<MetricCardEleven
title="Our Events"
description="Join us for weekly community gatherings and specialized culinary workshops."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{
id: "e1", value: "Wednesdays", title: "Wine Down Wednesday", description: "Half off all wine bottles every Wednesday night.", imageSrc: "http://img.b2bpic.net/free-photo/glass-red-wine-table_23-2148443920.jpg"
id: "e1",
value: "Wednesdays",
title: "Wine Down Wednesday",
description: "Half off all wine bottles every Wednesday night.",
imageSrc: "http://img.b2bpic.net/free-photo/glass-red-wine-table_23-2148443920.jpg"
},
{
id: "e2", value: "Monthly", title: "Cooking Workshop", description: "Master basic techniques with our head chef.", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-food-kitchen_23-2148443900.jpg"
id: "e2",
value: "Monthly",
title: "Cooking Workshop",
description: "Master basic techniques with our head chef.",
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-food-kitchen_23-2148443900.jpg"
}
]}
buttons={[{ text: "RSVP Now", href: "/#contact" }]}
buttons={[{ text: "RSVP Now", href: "/contact" }]}
/>
</div>
<FooterCard logoText="The Table" />