Update src/app/about/page.tsx

This commit is contained in:
2026-05-01 10:06:29 +00:00
parent 254a37009b
commit a4a912f260

View File

@@ -7,7 +7,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,32 +25,15 @@ 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>
@@ -71,24 +54,8 @@ export default function LandingPage() {
title="Our Milestones"
description="Evidence of our commitment to your growth."
metrics={[
{
id: "m1",
value: "500+",
title: "Clients Served",
items: [
"Global reach",
"Industry expertise",
],
},
{
id: "m2",
value: "200%",
title: "Growth Rate",
items: [
"Consistent ROI",
"Performance driven",
],
},
{ id: "m1", value: "500+", title: "Clients Served", items: ["Global reach", "Industry expertise"] },
{ id: "m2", value: "200%", title: "Growth Rate", items: ["Consistent ROI", "Performance driven"] },
]}
/>
</div>
@@ -96,30 +63,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"
/>