From f33f14e38ecb37d37552b2b7c0c1fca4b162bf88 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:55:40 +0000 Subject: [PATCH] Add src/app/features/page.tsx --- src/app/features/page.tsx | 167 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 167 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..074df79 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,167 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Zap, Sparkles, Headphones, Battery, Volume2, Lightbulb, ShieldCheck, Radio } from "lucide-react"; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}