diff --git a/src/App.tsx b/src/App.tsx
index c9c6d8e..210e664 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ProductsPage from "@/pages/ProductsPage";
+import ReelsProductsPage from "@/pages/ReelsProductsPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 37b1f92..d9e84d9 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -29,6 +29,8 @@ export default function Layout() {
"name": "Brands", "href": "#brands"
},
{ name: "Products", href: "/products" },
+ { name: "Reels Products", href: "/reels-products" },
+
];
diff --git a/src/pages/ReelsProductsPage.tsx b/src/pages/ReelsProductsPage.tsx
new file mode 100644
index 0000000..c8a3461
--- /dev/null
+++ b/src/pages/ReelsProductsPage.tsx
@@ -0,0 +1,86 @@
+import React from "react";
+import { routes } from "@/routes";
+import NavbarCentered from "@/components/ui/NavbarCentered";
+import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
+import ProductMediaCards from "@/components/sections/product/ProductMediaCards";
+import FeaturesBento from "@/components/sections/features/FeaturesBento";
+import FooterMinimal from "@/components/sections/footer/FooterMinimal";
+
+export default function ReelsProductsPage() {
+ return (
+
+
({ name: r.label, href: r.path }))}
+ ctaButton={{ text: "Get Started", href: "/contact" }}
+ />
+
+
+
+
+
+
console.log("Starter Pack clicked")
+ },
+ {
+ name: "Growth Engine",
+ price: "$1,299/mo",
+ imageSrc: "https://images.unsplash.com/photo-1533227260879-1090f11683f5?q=80&w=800&auto=format&fit=crop",
+ onClick: () => console.log("Growth Engine clicked")
+ },
+ {
+ name: "Viral Mastery",
+ price: "$2,499/mo",
+ imageSrc: "https://images.unsplash.com/photo-1516280440502-65f5363e3b5e?q=80&w=800&auto=format&fit=crop",
+ onClick: () => console.log("Viral Mastery clicked")
+ }
+ ]}
+ />
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index 93d7fae..cff8606 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
+ { path: '/reels-products', label: 'Reels Products', pageFile: 'ReelsProductsPage' },
];