diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 2417e0e..814d140 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -31,13 +31,7 @@ export default function BlogPage() {
>
);
-}
+}
\ No newline at end of file
diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx
new file mode 100644
index 0000000..47f3598
--- /dev/null
+++ b/src/app/features/page.tsx
@@ -0,0 +1,83 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import FooterCard from '@/components/sections/footer/FooterCard';
+import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
+import {
+ BarChart2,
+ ClipboardCheck,
+ Github,
+ Linkedin,
+ Shield,
+ Twitter,
+ Workflow,
+ Zap
+} from 'lucide-react';
+
+const socialLinks = [
+ { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
+ { icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
+ { icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
+];
+
+export default function FeaturesPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a3d234e..c364146 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -46,7 +46,7 @@ export default function LandingPage() {
>
);
-}
+}
\ No newline at end of file
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index dd7b7d9..5a095ec 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -92,7 +92,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -141,7 +141,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -197,7 +197,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -260,4 +260,4 @@ function ProductPageContent({ params }: ProductPageProps) {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 7452a09..42d3dfb 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -61,7 +61,7 @@ export default function ShopPage() {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -109,7 +109,7 @@ export default function ShopPage() {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -162,4 +162,4 @@ export default function ShopPage() {
);
-}
+}
\ No newline at end of file