Update src/app/contact/page.tsx

This commit is contained in:
2026-05-01 05:35:43 +00:00
parent ffe88bbca8
commit 2f8edffdb0

View File

@@ -7,7 +7,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -25,28 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" },
]}
brandName="NexaDev Solutions"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
@@ -56,14 +42,8 @@ export default function LandingPage() {
title="Let's Connect"
description="Ready to scale your digital presence?"
metrics={[
{
value: "24/7",
title: "Support",
},
{
value: "Worldwide",
title: "Coverage",
},
{ value: "24/7", title: "Support" },
{ value: "Worldwide", title: "Coverage" },
]}
imageSrc="http://img.b2bpic.net/free-photo/future-visions-business-technology-concept_23-2151893438.jpg"
mediaAnimation="slide-up"
@@ -77,27 +57,15 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Contact Channels"
description="Reach us via our official partners."
names={[
"Email",
"Slack",
"Discord",
"LinkedIn",
"GitHub",
]}
names={["Email", "Slack", "Discord", "LinkedIn", "GitHub"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="NexaDev Solutions"
leftLink={{
text: "Privacy Policy",
href: "/legal",
}}
rightLink={{
text: "Terms of Service",
href: "/legal",
}}
leftLink={{ text: "Privacy Policy", href: "/legal" }}
rightLink={{ text: "Terms of Service", href: "/legal" }}
/>
</div>
</ReactLenis>