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