diff --git a/src/app/design-canvas/page.tsx b/src/app/design-canvas/page.tsx new file mode 100644 index 0000000..cab459e --- /dev/null +++ b/src/app/design-canvas/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import { Move3d, ArrowRight } from "lucide-react"; + +export default function DesignCanvasPage() { + return ( + + + +
+ +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index b0911c8..035f256 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -67,11 +67,11 @@ export default function LandingPage() { }, { title: "Interactive Canvas Placement", description: "Position logos on any garment template with precise controls. Rotate, scale, and preview in real-time", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZYNcpRFV3V44D4fPITDL3yqoO/an-interactive-canvas-showing-a-white-t--1772801642764-d0d6cce3.png", imageAlt: "Canvas logo placement tool", buttonIcon: Move3d, - buttonHref: "#products" + buttonHref: "/design-canvas" }, { title: "AI Visual Search", description: "Scan your design and instantly match with real suppliers. 2-second matching powered by Google Lens", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZYNcpRFV3V44D4fPITDL3yqoO/a-visual-search-animation-with-a-2-secon-1772801642749-42d73384.png", imageAlt: "Visual search scanning animation", buttonIcon: Zap, - buttonHref: "#products" + buttonHref: "/visual-search" }, { title: "Supplier Discovery", description: "Browse matching products from vetted suppliers worldwide. Compare prices and quality in seconds", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZYNcpRFV3V44D4fPITDL3yqoO/a-bottom-sheet-product-grid-showing-6-8--1772801643125-e215bede.png?_wi=1", imageAlt: "Product grid showing supplier matches", buttonIcon: ShoppingCart, diff --git a/src/app/visual-search/page.tsx b/src/app/visual-search/page.tsx new file mode 100644 index 0000000..9049af9 --- /dev/null +++ b/src/app/visual-search/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import { Zap, ArrowRight } from "lucide-react"; + +export default function VisualSearchPage() { + return ( + + + +
+ +
+
+ ); +}