Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4660e5fec6 | |||
| e18ac94832 | |||
| 261bc678b4 | |||
| b53e49500f | |||
| b1a33443ad | |||
| a9f6fd3160 |
@@ -166,18 +166,19 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Book Your Table"
|
||||
description="Secure your spot for an unforgettable dining journey."
|
||||
title="Book Your Culinary Journey"
|
||||
description="Reserve a table at Sydney Bistro and let us craft an evening to remember."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Email Address", required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "guests", type: "number", placeholder: "Number of Guests", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Date", required: true }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-public-intimacy-moments_23-2149459116.jpg"
|
||||
imageAlt="restaurant interior bar counter lighting"
|
||||
textarea={{ name: "requests", placeholder: "Dietary requirements or special requests?" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-gourmet-meal_23-2148738363.jpg"
|
||||
imageAlt="restaurant interior and fine dining table setup"
|
||||
buttonText="Confirm Reservation"
|
||||
onSubmit={(data) => console.log("Booking submitted:", data)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -187,23 +188,28 @@ export default function LandingPage() {
|
||||
logoText="Sydney Bistro"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "About", href: "#about"},
|
||||
title: "Contact", items: [
|
||||
{ label: "123 Harbour St, Sydney", href: "#" },
|
||||
{ label: "(02) 5550 1234", href: "tel:0255501234" }
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Opening Hours", items: [
|
||||
{ label: "Mon-Fri: 5pm-11pm", href: "#" },
|
||||
{ label: "Sat-Sun: 12pm-11pm", href: "#" }
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 | Sydney Bistro. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #15479c;
|
||||
--background: #000000;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #000000;
|
||||
--accent: #FFD700;
|
||||
--background-accent: #15479c;
|
||||
--secondary-cta: #000000;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #fde047;
|
||||
--background-accent: #106EFB;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user