Update src/app/about/page.tsx

This commit is contained in:
2026-04-03 07:24:23 +00:00
parent 22f8c7d782
commit 74e737d030

View File

@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,34 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="YOR"
/>
@@ -65,6 +41,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Mission"
description="To empower Indian SMBs."
features={[]}
/>
</div>
@@ -75,55 +52,16 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Growth"
description="Built by a passionate team."
metrics={[]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Quick Links",
items: [
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Pricing",
href: "/pricing",
},
],
},
{
title: "Products",
items: [
{
label: "AI Receptionist",
href: "/services",
},
{
label: "AI Support",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms",
href: "/terms",
},
{
label: "Privacy",
href: "/privacy",
},
],
},
{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Products", items: [{ label: "AI Receptionist", href: "/services" }, { label: "AI Support", href: "/services" }] },
{ title: "Legal", items: [{ label: "Terms", href: "/terms" }, { label: "Privacy", href: "/privacy" }] },
]}
logoText="YOR"
copyrightText="© 2026 | YOR. Built with love for Indian businesses."
@@ -132,4 +70,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}