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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}