Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-04-07 01:26:00 +00:00

View File

@@ -7,7 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -22,82 +22,70 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
{
name: "Barbers", id: "/barbers"},
{
name: "Services", id: "/services"},
{
name: "Reviews", id: "/reviews"},
{
name: "Gallery", id: "/gallery"},
{
name: "Book Now", id: "/contact"},
]}
brandName="Lake Wales Finest"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Barbers", id: "/barbers" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Book Now", id: "/contact" },
]}
brandName="Lake Wales Finest"
/>
</div>
<div id="contact-page" data-section="contact-page">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "glowing-orb"}}
tag="Contact Us"
title="Ready for a Fresh Cut?"
description="Walk-ins are always welcome. Booking ahead helps us get you in faster."
buttons={[
{
text: "Book Now", href: "#"},
]}
/>
</div>
<div id="contact-page" data-section="contact-page">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "plain"
}}
tag="Contact Us"
title="Ready for a Fresh Cut?"
description="Walk-ins are always welcome. Booking ahead helps us get you in faster."
buttons={[
{ text: "Book Now", href: "#" },
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Booking Help"
description="Common questions regarding bookings."
faqs={[
{
id: "q1", title: "How to contact?", content: "You can walk in or message us on Facebook."},
]}
faqsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Booking Help"
description="Common questions regarding bookings."
faqs={[
{ id: "q1", title: "How to contact?", content: "You can walk in or message us on Facebook." },
]}
faqsAnimation="slide-up"
/>
</div>
<div id="home-footer" data-section="home-footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{
label: "Home", href: "/"},
{
label: "Barbers", href: "/barbers"},
{
label: "Services", href: "/services"},
],
},
{
title: "Social", items: [
{
label: "Instagram", href: "#"},
{
label: "Facebook", href: "#"},
],
},
]}
bottomLeftText="© 2024 Lake Wales Finest Barbershop"
bottomRightText="Lake Wales, Florida"
/>
</div>
<div id="home-footer" data-section="home-footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Barbers", href: "/barbers" },
{ label: "Services", href: "/services" },
],
},
{
title: "Social", items: [
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
],
},
]}
bottomLeftText="© 2024 Lake Wales Finest Barbershop"
bottomRightText="Lake Wales, Florida"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}