Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -14,6 +14,11 @@ import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handlePurchase = (productName: string) => {
|
||||
console.log(`Initiating payment for ${productName}`);
|
||||
alert(`Proceeding to checkout for ${productName}...`);
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -59,7 +64,8 @@ export default function LandingPage() {
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176153.jpg", imageAlt: "perfume glass bottle luxury brand" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-natural-self-care-products-assortment_23-2148980974.jpg", imageAlt: "gold accented perfume bottle premium" },
|
||||
]}
|
||||
buttons={[{ text: "Shop Now", href: "#products" }]}
|
||||
buttons={[{ text: "Shop Now", href: "#products" }]
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -102,12 +108,12 @@ export default function LandingPage() {
|
||||
title="Our Fragrance Collection"
|
||||
description="Explore our curated selection of signature scents."
|
||||
products={[
|
||||
{ id: "1", name: "Midnight Rose", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-pink-flowers-arrangement_23-2149629980.jpg" },
|
||||
{ id: "2", name: "Oud Wood", price: "$145", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg" },
|
||||
{ id: "3", name: "Citrus Breeze", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-colored-bottles_23-2148241820.jpg" },
|
||||
{ id: "4", name: "Spiced Amber", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface-free-space_140725-63518.jpg" },
|
||||
{ id: "5", name: "Ocean Mist", price: "$105", imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-table_1194-639153.jpg" },
|
||||
{ id: "6", name: "Velvet Musk", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/liquor-beautiful-glass-bottle_176474-6070.jpg" },
|
||||
{ id: "1", name: "Midnight Rose", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-pink-flowers-arrangement_23-2149629980.jpg", onProductClick: () => handlePurchase("Midnight Rose") },
|
||||
{ id: "2", name: "Oud Wood", price: "$145", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg", onProductClick: () => handlePurchase("Oud Wood") },
|
||||
{ id: "3", name: "Citrus Breeze", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-colored-bottles_23-2148241820.jpg", onProductClick: () => handlePurchase("Citrus Breeze") },
|
||||
{ id: "4", name: "Spiced Amber", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface-free-space_140725-63518.jpg", onProductClick: () => handlePurchase("Spiced Amber") },
|
||||
{ id: "5", name: "Ocean Mist", price: "$105", imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-table_1194-639153.jpg", onProductClick: () => handlePurchase("Ocean Mist") },
|
||||
{ id: "6", name: "Velvet Musk", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/liquor-beautiful-glass-bottle_176474-6070.jpg", onProductClick: () => handlePurchase("Velvet Musk") },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user