Update src/app/contact/page.tsx

This commit is contained in:
2026-04-01 02:34:57 +00:00
parent c572b71b0c
commit e556a7f979

View File

@@ -2,12 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -22,132 +21,34 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Amped Web Solutions"
/>
</div>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Amped Web Solutions"
/>
<div className="pt-32 pb-20">
<ContactCenter
tag="Get in Touch"
title="Let's Build Something Great"
description="Ready to discuss your next project? Send us a message and we'll be in touch shortly."
background={{ variant: "plain" }}
/>
</div>
<div id="contact-us" data-section="contact-us">
<ContactSplitForm
useInvertedBackground={false}
title="Let's build together."
description="We respond within 24 hours. Most projects start within 48 hours of your first call."
inputs={[
{
name: "Full Name",
type: "text",
placeholder: "Enter your full name",
},
{
name: "Business Name",
type: "text",
placeholder: "Your business name",
},
{
name: "Phone Number",
type: "tel",
placeholder: "Your phone number",
},
{
name: "Email",
type: "email",
placeholder: "Your email address",
},
]}
textarea={{
name: "Message",
placeholder: "How can we help you?",
}}
imageSrc="http://img.b2bpic.net/free-photo/lifestyle-people-office_23-2149173741.jpg?_wi=7"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Immediate Action"
title="Need urgent help?"
description="Give us a call today."
buttons={[
{
text: "Call Now",
href: "tel:8505550123",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "Portfolio",
href: "/portfolio",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Tallahassee, FL",
href: "#",
},
{
label: "© 2026",
href: "#",
},
],
},
]}
logoText="Amped Web Solutions"
/>
</div>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/portfolio" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Tallahassee, FL", href: "#" }, { label: "© 2026", href: "#" }] },
]}
logoText="Amped Web Solutions"
/>
</ReactLenis>
</ThemeProvider>
);
}
}