Update src/app/about/page.tsx

This commit is contained in:
2026-04-08 08:12:12 +00:00
parent 25fbd17720
commit db45c23c74

View File

@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="GrowFrame"
/>
@@ -58,20 +43,14 @@ export default function LandingPage() {
description="We build with security and precision at our core."
metrics={[
{
value: "15+",
title: "Years Experience",
},
value: "15+", title: "Years Experience"},
{
value: "500+",
title: "Projects Delivered",
},
value: "500+", title: "Projects Delivered"},
{
value: "99.9%",
title: "Uptime Guaranteed",
},
value: "99.9%", title: "Uptime Guaranteed"},
]}
imageSrc="http://img.b2bpic.net/free-photo/brutal-man-with-beard-black-suit-buttons-up-buttons-his-jacket_343596-7334.jpg"
mediaAnimation="fade-in-up"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
@@ -85,11 +64,8 @@ export default function LandingPage() {
description="Impact data."
metrics={[
{
id: "m1",
icon: Globe,
title: "Countries",
value: "20+",
},
id: "m1", icon: Globe,
title: "Countries", value: "20+"},
]}
/>
</div>
@@ -99,38 +75,25 @@ export default function LandingPage() {
logoText="GrowFrame Solutions"
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Pricing",
href: "/pricing",
},
label: "Pricing", href: "/pricing"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy",
},
label: "Privacy Policy", href: "/privacy"},
],
},
]}