3 Commits

Author SHA1 Message Date
940ae4b145 Update src/app/page.tsx 2026-03-09 16:00:39 +00:00
fd89e0b3e9 Add src/app/contact/page.tsx 2026-03-09 16:00:38 +00:00
8a07f98bdc Merge version_1 into main
Merge version_1 into main
2026-03-09 15:27:27 +00:00
2 changed files with 93 additions and 1 deletions

92
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,92 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Phone } from 'lucide-react';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="noise"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Beppe's Café"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Call Now", href: "tel:+442072367822"
}}
animateOnLoad={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to visit Beppe's Café? Get in touch with us for reservations, catering inquiries, or any questions about our menu and services."
animationType="entrance-slide"
buttons={[
{ text: "Call +44 20 7236 7822", href: "tel:+442072367822" },
{ text: "Back to Home", href: "/" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Beppe's Café"
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/#menu" },
{ label: "About Us", href: "/#about" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Visit Us", items: [
{ label: "23 W Smithfield, London EC1A 9HY", href: "#" },
{ label: "Phone: +44 20 7236 7822", href: "tel:+442072367822" },
{ label: "Monday - Friday: 7:00 AM - 5:00 PM", href: "#" },
{ label: "Saturday - Sunday: 8:00 AM - 4:00 PM", href: "#" }
]
},
{
title: "Follow Us", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "https://google.com" }
]
},
{
title: "Company", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" }
]
}
]}
copyrightText="© 2025 Beppe's Café | All rights reserved. Quality coffee & authentic food since 2005."
/>
</div>
</ThemeProvider>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{ text: "Book a Table", href: "tel:+442072367822" },
{ text: "Order Online", href: "#" }
{ text: "Order Online", href: "/contact" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/elegant-couple-spend-time-restaurant_1157-20505.jpg"