diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..91c27ae --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,164 @@ +"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, Battery, Headphones, Volume2, Radio, Wifi } from "lucide-react"; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}