From 3a5c36e4e7607c4101ca1e2a12f2ecd0794b8865 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:04:24 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 94 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 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..f9f9025 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,94 @@ +"use client"; +import { ThemeProvider } from "next-themes"; +import { NavbarStyleCentered } from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import { SplitAbout } from "@/components/sections/about/SplitAbout"; +import { FooterBase } from "@/components/sections/footer/FooterBase"; +import { Sparkles, Lightbulb, TrendingUp, Handshake } from "lucide-react"; +import { useEffect, useState } from "react"; + +const navbarLinks = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" } +]; + +export default function AboutPage() { + const [isClient, setIsClient] = useState(false); + useEffect(() => { + setIsClient(true); + }, []); + + if (!isClient) { + return null; + } + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file