diff --git a/src/app/old-money/page.tsx b/src/app/old-money/page.tsx new file mode 100644 index 0000000..7a0ed20 --- /dev/null +++ b/src/app/old-money/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react"; + +export default function OldMoneyPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Street Style", id: "/street-style" }, + { name: "Old Money", id: "/old-money" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +}