Merge version_2 into main #4
@@ -8,18 +8,18 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
|
||||
export default function AboutPage() {
|
||||
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: "Our Story", id: "/about" },
|
||||
{ name: "Menu", id: "/#menu" },
|
||||
{ name: "Events", id: "/#events" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Events", id: "/events" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Table"
|
||||
button={{ text: "Order Now", href: "/#menu" }}
|
||||
button={{ text: "Order Now", href: "/menu" }}
|
||||
/>
|
||||
<div className="pt-24">
|
||||
<TextSplitAbout
|
||||
|
||||
@@ -2,37 +2,26 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function ContactPage() {
|
||||
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: "Our Story", id: "/about" },
|
||||
{ name: "Menu", id: "/#menu" },
|
||||
{ name: "Events", id: "/#events" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Events", id: "/events" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Table"
|
||||
button={{ text: "Order Now", href: "/#menu" }}
|
||||
button={{ text: "Order Now", href: "/menu" }}
|
||||
/>
|
||||
<div className="pt-24">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Whether you're planning an event or just have a question about our menu, we'd love to hear from you."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Your message here", rows: 4 }}
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-hall-with-round-square-tables-some-chairs-plants_140725-8031.jpg"
|
||||
/>
|
||||
{/* Contact section removed to match registry availability if preferred */}
|
||||
</div>
|
||||
<FooterCard
|
||||
logoText="The Table"
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -8,23 +8,26 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
|
||||
export default function MenuPage() {
|
||||
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: "Events", id: "/events" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Table"
|
||||
button={{ text: "Order Now", href: "/menu" }}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<ProductCardOne
|
||||
title="Coffee & Tea"
|
||||
description="Our specialty brews."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "c1", name: "Signature Espresso", price: "$4", imageSrc: "http://img.b2bpic.net/free-photo/top-view-coffee-cup-table_23-2148281358.jpg" },
|
||||
{ id: "c2", name: "Organic Loose Leaf Tea", price: "$5", imageSrc: "http://img.b2bpic.net/free-photo/cup-tea-with-leaves-table_23-2148281370.jpg" }
|
||||
@@ -34,9 +37,11 @@ export default function MenuPage() {
|
||||
<div className="py-20">
|
||||
<ProductCardOne
|
||||
title="Pastries & Wine"
|
||||
description="Handcrafted treats and fine wines."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Butter Croissant", price: "$6", imageSrc: "http://img.b2bpic.net/free-photo/croissant-plate_23-2148443905.jpg" },
|
||||
{ id: "w1", name: "House Red Selection", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/glass-red-wine-table_23-2148443920.jpg" }
|
||||
|
||||
Reference in New Issue
Block a user