diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e251221..49825df 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,7 +8,7 @@ import LegalSection from '@/components/legal/LegalSection'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import { Rocket, Users } from "lucide-react"; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -60,16 +42,8 @@ export default function LandingPage() { useInvertedBackground={false} title="Company Stats" metrics={[ - { - icon: Users, - label: "Happy Clients", - value: "500+", - }, - { - icon: Rocket, - label: "Projects Launched", - value: "800+", - }, + { icon: Users, label: "Happy Clients", value: "500+" }, + { icon: Rocket, label: "Projects Launched", value: "800+" }, ]} metricsAnimation="slide-up" /> @@ -80,13 +54,7 @@ export default function LandingPage() { layout="page" title="Company Policy" sections={[ - { - heading: "Privacy", - content: { - type: "paragraph", - text: "We value your privacy.", - }, - }, + { heading: "Privacy", content: [{ type: "paragraph", text: "We value your privacy." }] }, ]} /> @@ -94,36 +62,8 @@ export default function LandingPage() {