From 6251823f7559301adf549e5e57d7333927096e7b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 23:37:46 +0000 Subject: [PATCH] Add src/app/ai-style-recommendation/page.tsx --- src/app/ai-style-recommendation/page.tsx | 111 +++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 src/app/ai-style-recommendation/page.tsx diff --git a/src/app/ai-style-recommendation/page.tsx b/src/app/ai-style-recommendation/page.tsx new file mode 100644 index 0000000..90d4131 --- /dev/null +++ b/src/app/ai-style-recommendation/page.tsx @@ -0,0 +1,111 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import TextBox from "@/components/Textbox"; +import ButtonBounceEffect from "@/components/button/ButtonBounceEffect/ButtonBounceEffect"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { Sparkles } from "lucide-react"; + +export default function AIStyleRecommendationPage() { + const navItems = [ + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "Docs", id: "docs" }, + { name: "AI Style Recommendation", id: "/ai-style-recommendation" }, + { name: "Contact", id: "contact" } + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Integrations", href: "#" }, + { label: "Changelog", href: "#" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "#" }, + { label: "API Reference", href: "#" }, + { label: "Tutorials", href: "#" }, + { label: "Blog", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "#contact" }, + { label: "Press", href: "#" }, + ], + }, + ]; + + return ( + + +
+ console.log("Upload photo clicked") } + ]} + /> +
+

How it Works

+
+ + + +
+
+
+ +
+ ); +} \ No newline at end of file