Update src/app/contact/page.tsx

This commit is contained in:
2026-05-13 08:38:27 +00:00
parent 88f7a63893
commit cda47e3c34

View File

@@ -2,51 +2,34 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() { export default function ContactPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="rounded"
contentWidth="small" contentWidth="medium"
sizing="largeSmall" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="outline" cardStyle="glass-elevated"
primaryButtonStyle="shadow" primaryButtonStyle="gradient"
secondaryButtonStyle="solid" secondaryButtonStyle="glass"
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Nexora" brandName="Nexora"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
/> />
</div> </div>
@@ -56,52 +39,11 @@ export default function LandingPage() {
title="Let's Talk" title="Let's Talk"
description="Start your journey with Nexora today." description="Start your journey with Nexora today."
inputs={[ inputs={[
{ { name: "name", type: "text", placeholder: "Name", required: true },
name: "name", { name: "email", type: "email", placeholder: "Email", required: true }
type: "text",
placeholder: "Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Email",
required: true,
},
]} ]}
textarea={{ textarea={{ name: "message", placeholder: "Describe your project", required: true }}
name: "message",
placeholder: "Describe your project",
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/office-work-computer-technology-concept_53876-133883.jpg" imageSrc="http://img.b2bpic.net/free-photo/office-work-computer-technology-concept_53876-133883.jpg"
imageAlt="Office work computer technology concept"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Stay Updated"
title="Join the Nexora Newsletter"
description="Get insights and creative inspiration directly to your inbox."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Nexora"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
/> />
</div> </div>
</ReactLenis> </ReactLenis>