diff --git a/src/app/page.tsx b/src/app/page.tsx index 20a8023..1f49566 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,6 +29,8 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..41c7bae --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,133 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { Sparkles } from "lucide-react"; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ window.open("https://example.com/product/1", "_blank") + }, + { + id: "2", name: "Seasonal Bloom Collection", price: "$145", imageSrc: "https://pixabay.com/get/g42aa4c809b734bac217107a84e7eab60722a501eed29a7ccca90449989534cba803f2a58e5de4cea8679c4f0a1bad0484f3c907b18f7c4a2a289c055f88e8fa4_1280.jpg", imageAlt: "Seasonal bloom bouquet", onProductClick: () => window.open("https://example.com/product/2", "_blank") + }, + { + id: "3", name: "Garden Fresh Mix", price: "$125", imageSrc: "https://pixabay.com/get/gba06cf3cec00cd27bec5198f873f48aeec98f8a9a8f9c46b7ed078eb702ab84d18d100ec48a93ab5e9d6b60616da8c1cc6ceb28f2e3d06f41c1acf60843cfba2_1280.jpg", imageAlt: "Garden fresh flower mix", onProductClick: () => window.open("https://example.com/product/3", "_blank") + }, + { + id: "4", name: "Tropical Paradise", price: "$155", imageSrc: "https://pixabay.com/get/gfd515623ddf78d3a9eb873830f5f3a04eb4d027da904c6ccff8eb6986362110fae85c6c031b628a44017007a0c8bd1ac_1280.jpg", imageAlt: "Tropical paradise arrangement", onProductClick: () => window.open("https://example.com/product/4", "_blank") + }, + { + id: "5", name: "Minimalist Elegance", price: "$135", imageSrc: "https://pixabay.com/get/g04aa2022f6ce160dd18da8c304bfb3c604b78e96b49b8dfa9659b9ec12858277a6d95e6350234b5495703b06f6024a8c41ec4eeb87b985f0fd40514265fccfe0_1280.jpg", imageAlt: "Minimalist elegant bouquet", onProductClick: () => window.open("https://example.com/product/5", "_blank") + }, + { + id: "6", name: "Premium Gift Box", price: "$165", imageSrc: "https://pixabay.com/get/gb686711862284d3c1ecf0a2677bff945c6da7779ff400a3061b58d06d9785e21c8a7928eef2cefd53bd9ad47432582797b5eeb6c4ab3ad7bb79254ecd7ef273b_1280.jpg", imageAlt: "Premium gift box arrangement", onProductClick: () => window.open("https://example.com/product/6", "_blank") + } + ]} + gridVariant="three-columns-all-equal-width" + animationType="slide-up" + textboxLayout="default" + useInvertedBackground={false} + carouselMode="buttons" + /> +
+ + +
+ ); +}