4 Commits

Author SHA1 Message Date
a46d94593c Update src/app/visit/page.tsx 2026-05-10 15:17:17 +00:00
c49fcccf7f Update theme colors 2026-05-10 14:49:06 +00:00
94c9b2f067 Update src/app/visit/page.tsx 2026-05-10 14:47:09 +00:00
778dbf567a Merge version_1 into main
Merge version_1 into main
2026-05-10 14:11:56 +00:00
2 changed files with 23 additions and 51 deletions

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #efebe5;
--card: #f7f2ea;
--foreground: #000000;
--primary-cta: #b82b40;
--primary-cta-text: #efebe5;
--secondary-cta: #ffffff;
--secondary-cta-text: #000000;
--accent: #e1b875;
--background-accent: #e8a8b6;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -26,26 +26,16 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Visit Us",
id: "/visit",
},
name: "Visit Us", id: "/visit"},
]}
button={{
text: "Call Now",
href: "tel:8649160692",
}}
text: "Call Now", href: "tel:8649160692"}}
brandName="Carolina Pizza"
/>
</div>
@@ -57,21 +47,13 @@ export default function LandingPage() {
description="Find us at 124 E Main St suite124D, Walhalla, SC 29691. Call us at (864) 916-0692."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
},
name: "name", type: "text", placeholder: "Your Name"},
{
name: "email",
type: "email",
placeholder: "Your Email",
},
name: "email", type: "email", placeholder: "Your Email"},
]}
textarea={{
name: "message",
placeholder: "Questions or comments?",
}}
imageSrc="http://img.b2bpic.net/free-photo/full-shot-small-business-owner-standing-outdoors_23-2149434499.jpg"
name: "message", placeholder: "Questions or comments?"}}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXIywwWoBBHjr4CIJv8ZEijtyW/uploaded-1778426228812-jktujaul.jpg"
imageAlt="pizzeria storefront main street"
/>
</div>
@@ -84,15 +66,9 @@ export default function LandingPage() {
description="Here is how to navigate your visit."
faqs={[
{
id: "v1",
title: "Is parking available?",
content: "Yes, we have free parking in front of the building.",
},
id: "v1", title: "Is parking available?", content: "Yes, we have free parking in front of the building."},
{
id: "v2",
title: "Is the restaurant accessible?",
content: "Yes, we are ADA compliant and welcoming to all.",
},
id: "v2", title: "Is the restaurant accessible?", content: "Yes, we are ADA compliant and welcoming to all."},
]}
faqsAnimation="slide-up"
/>
@@ -102,16 +78,12 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="Carolina Pizza Co."
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Contact Us",
href: "/visit",
}}
text: "Contact Us", href: "/visit"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}