Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 91bcd2299d | |||
| 16b8ca0900 | |||
| fac5134190 | |||
| d851bc1578 | |||
| 9018457870 | |||
| 54993e545c | |||
| d6726474de | |||
| b09f1c1e37 |
57
src/app/contact/page.tsx
Normal file
57
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="expand-hover"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="large"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="solid"
|
||||||
|
primaryButtonStyle="flat"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "hero" },
|
||||||
|
{ name: "Benefits", id: "features" },
|
||||||
|
{ name: "Pricing", id: "pricing" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
]}
|
||||||
|
brandName="LocalWebBuilder"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Contact"
|
||||||
|
title="Let's Build Your Future"
|
||||||
|
description="Reach out to discuss your project. We are ready to help your business grow."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
onSubmit={(email) => console.log(email)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterCard
|
||||||
|
logoText="LocalWebBuilder"
|
||||||
|
copyrightText="© 2025 LocalWebBuilder - All Rights Reserved"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -61,7 +61,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: 970-216-3712", href: "tel:9702163712" },
|
{ text: "Call Now: 970-216-3712", href: "tel:9702163712" },
|
||||||
{ text: "Get Started Today", href: "#contact" },
|
{ text: "Get Started Today", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,11 +108,11 @@ export default function LandingPage() {
|
|||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "basic", name: "Complete Website Build", price: "$1,000", features: ["Full design & build", "Mobile optimization", "Lead capture forms", "SEO structure"],
|
id: "basic", name: "Complete Website Build", price: "$1,000", features: ["Full design & build", "Mobile optimization", "Lead capture forms", "SEO structure"],
|
||||||
buttons: [{ text: "Get Started", href: "#contact" }],
|
buttons: [{ text: "Get Started", href: "/contact" }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "deposit", name: "Down Payment", price: "$500", features: ["Required to start", "Instant project kickoff", "Secure payment link"],
|
id: "deposit", name: "Down Payment", price: "$500", features: ["Required to start", "Instant project kickoff", "Secure payment link"],
|
||||||
buttons: [{ text: "Pay Deposit", href: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YOUR_BUTTON_ID" }],
|
buttons: [{ text: "Pay Deposit", href: "https://www.paypal.com/checkoutnow?hosted_button_id=YOUR_BUTTON_ID" }],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Transparent Pricing"
|
title="Transparent Pricing"
|
||||||
@@ -132,10 +132,7 @@ export default function LandingPage() {
|
|||||||
ctaTitle="Ready to get started?"
|
ctaTitle="Ready to get started?"
|
||||||
ctaDescription="Call us at 970-216-3712 or fill out the form to secure your spot today."
|
ctaDescription="Call us at 970-216-3712 or fill out the form to secure your spot today."
|
||||||
ctaButton={{
|
ctaButton={{
|
||||||
text: "Contact Us", onClick: () => {
|
text: "Contact Us", href: "/contact"
|
||||||
const element = document.getElementById("contact");
|
|
||||||
element?.scrollIntoView({ behavior: "smooth" });
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
ctaIcon={Phone}
|
ctaIcon={Phone}
|
||||||
/>
|
/>
|
||||||
@@ -150,4 +147,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user