From be38bb67e19f4dd67e0f5e7f12e436b17e532195 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:04:26 +0000 Subject: [PATCH] Add src/app/features/page.tsx --- src/app/features/page.tsx | 98 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/app/features/page.tsx diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..1f9b704 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,98 @@ +"use client"; +import { ThemeProvider } from "next-themes"; +import { NavbarStyleCentered } from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import { FeatureCardTwentyFour } from "@/components/sections/feature/FeatureCardTwentyFour"; +import { FooterBase } from "@/components/sections/footer/FooterBase"; +import { Sparkles, Briefcase, Users } from "lucide-react"; +import { useEffect, useState } from "react"; + +const navbarLinks = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" } +]; + +export default function FeaturesPage() { + const [isClient, setIsClient] = useState(false); + useEffect(() => { + setIsClient(true); + }, []); + + if (!isClient) { + return null; + } + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file