From e5a032083cabbe19e0a0da2faa6695fc42899053 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 01:59:32 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 80 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..5b3fa6a --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,80 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Zap, Shield, Rocket, Target, Sparkles, Crown, Mail, Users, Layers, Code, Award, UsersRound, Globe, Handshake } from "lucide-react"; + +export default function AboutPage() { + const navItems = [ + { name: "Features", href: "/#features" }, + { name: "Pricing", href: "/pricing" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/#contact" } + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "/#features" }, + { label: "Pricing", href: "/pricing" }, + { label: "Integrations", href: "#" }, + { label: "Changelog", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "/#contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "#" }, + { label: "Help Center", href: "#" }, + { label: "Community", href: "#" }, + { label: "Status", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + { label: "Security", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +}