Update src/app/contact/page.tsx

This commit is contained in:
2026-05-01 10:06:30 +00:00
parent 6873ff88b9
commit fd2b89c25a

View File

@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,41 +25,22 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Digitech Solutions"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
<div id="contact-us" data-section="contact-us">
<ContactText
useInvertedBackground={false}
background={{
variant: "animated-grid",
}}
background={{ variant: "animated-grid" }}
text="Ready to scale your business? Let's talk strategy."
/>
</div>
@@ -72,24 +53,8 @@ export default function LandingPage() {
title="Why Work With Us?"
description="Let's build your future together."
metrics={[
{
id: "c1",
value: "10+",
title: "Years Experience",
items: [
"Innovation",
"Strategy",
],
},
{
id: "c2",
value: "24/7",
title: "Active Support",
items: [
"Always on",
"Responsive",
],
},
{ id: "c1", value: "10+", title: "Years Experience", items: ["Innovation", "Strategy"] },
{ id: "c2", value: "24/7", title: "Active Support", items: ["Always on", "Responsive"] },
]}
/>
</div>
@@ -97,30 +62,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Pricing",
href: "/pricing",
},
],
},
{
items: [
{
label: "Blog",
href: "/blog",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }] },
{ items: [{ label: "Blog", href: "/blog" }, { label: "Contact", href: "/contact" }] },
]}
logoText="Digitech Solutions"
/>