Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-01 12:07:52 +00:00

View File

@@ -2,8 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -103,44 +103,47 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Visit Us"
<ContactSplitForm
useInvertedBackground={true}
title="Come Hungry, Leave Happy"
description="We're right on the high street in Ruislip, opposite the supermarket car park. Easy to find, easy to park, impossible to forget."
description="We're right on the high street in Ruislip, opposite the supermarket car park. Send us a message for large table bookings or general enquiries!"
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Your Email" }
]}
textarea={{ name: "message", placeholder: "Tell us about your plans..." }}
imageSrc="http://img.b2bpic.net/free-photo/full-shot-smiley-woman-taking-selfie_23-2149366413.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
<FooterLogoEmphasis
logoText="Rumbling Tum"
columns={[
{
title: "Quick Links", items: [
items: [
{ label: "Our Story", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Reviews", href: "#reviews" },
{ label: "Full Menu", href: "#menu" },
{ label: "What People Say", href: "#reviews" },
],
},
{
title: "Visit Us", items: [
items: [
{ label: "Victoria Road, Ruislip", href: "#contact" },
{ label: "London HA4", href: "#contact" },
],
},
{
title: "Hours", items: [
items: [
{ label: "Mon-Sat: 7am-3pm", href: "#" },
{ label: "Sunday: 8am-2pm", href: "#" },
],
},
]}
copyrightText="© 2026 Rumbling Tum Cafe. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}