Update src/app/events/page.tsx
This commit is contained in:
@@ -2,51 +2,44 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
|
||||
export default function EventsPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Menu", id: "/#menu" },
|
||||
{ name: "Events", id: "/events" },
|
||||
{ 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?_wi=1"
|
||||
},
|
||||
{
|
||||
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" }]}
|
||||
/>
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
title="Join Our Recurring Events"
|
||||
description="Discover our weekly culinary traditions and special community gatherings. Book your spot today!"
|
||||
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"
|
||||
},
|
||||
{
|
||||
id: "e2", value: "Monthly", title: "Farmer Partner Dinners", description: "Exclusive seasonal tasting menus curated with our local farm partners. Join our mailing list for invites.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-black-plates-with-golden-spoons-dark-background-color-food-cutlery-restaurant-dinner-cafe_179666-19702.jpg"
|
||||
},
|
||||
{
|
||||
id: "e3", value: "Seasonal", title: "Workshops & Tastings", description: "Learn from local experts in our monthly cooking and wine-tasting masterclasses.", imageSrc: "http://img.b2bpic.net/free-photo/girl-slices-vegetables-board-prepares-salad-nature-sunny-day-cooking-close-up-view_78826-3100.jpg"
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Full Calendar", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
<FooterCard logoText="The Table" />
|
||||
<FooterCard logoText="The Table" copyrightText="© 2025 The Table Restaurant" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user