diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..456bf66 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,255 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ProductsPage() { + const allProducts = [ + { + id: "1", name: "Luminous Serum", price: "$58", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-serum-bottle-hand-orange-background_185193-162127.jpg", imageAlt: "Luminous Serum bottle" + }, + { + id: "2", name: "Deep Moisture Cream", price: "$72", imageSrc: "http://img.b2bpic.net/free-photo/woman-caring-her-skin-standing-near-mirror-bathroom_1301-3694.jpg", imageAlt: "Deep Moisture Cream jar" + }, + { + id: "3", name: "Pure Radiance Cleanser", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-spa-essentials-background-home-decor_53876-128208.jpg", imageAlt: "Pure Radiance Cleanser" + }, + { + id: "4", name: "Overnight Recovery Mask", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-serum-bottle-hand-orange-background_185193-162127.jpg", imageAlt: "Overnight Recovery Mask jar" + } + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+
+
+

Product Details & Information

+ +
+
+

Luminous Serum

+

Price: $58 (Regular price: $68)

+

Current Discount: 15% off

+
+

Available Variants:

+
    +
  • 30ml Standard Bottle
  • +
  • 60ml Value Size
  • +
  • Travel Size (15ml)
  • +
+
+

Our signature serum combines vitamin C, hyaluronic acid, and botanical extracts to brighten and hydrate your complexion. Suitable for all skin types.

+
+ +
+

Deep Moisture Cream

+

Price: $72 (Regular price: $82)

+

Current Discount: 12% off

+
+

Available Variants:

+
    +
  • 50ml Standard Jar
  • +
  • 100ml Large Size
  • +
  • Travel Size (15ml)
  • +
+
+

Rich, luxurious cream with shea butter, ceramides, and nourishing oils. Provides intense hydration and barrier support for dry and sensitive skin.

+
+ +
+

Pure Radiance Cleanser

+

Price: $42 (Regular price: $48)

+

Current Discount: 12% off

+
+

Available Variants:

+
    +
  • Gel Formula (200ml)
  • +
  • Cream Formula (200ml)
  • +
  • Travel Size (50ml)
  • +
+
+

Gentle yet effective cleanser that removes impurities without stripping natural oils. Infused with chamomile and aloe vera for soothing properties.

+
+ +
+

Overnight Recovery Mask

+

Price: $65 (Regular price: $75)

+

Current Discount: 13% off

+
+

Available Variants:

+
    +
  • 60ml Luxury Jar
  • +
  • 100ml Professional Size
  • +
  • Sheet Mask Set (5 sheets)
  • +
+
+

Intensive overnight treatment mask with peptides and antioxidants. Wake up to restored, rejuvenated skin with enhanced luminosity and smoothness.

+
+
+ +
+

Bundle Offers & Promotions

+
+
+

Complete Skincare Routine

+

Serum + Cream + Cleanser

+

Bundle Price: $155 (Save $17)

+

25% savings when purchased together

+
+
+

Luxury Travel Set

+

All 4 Products in Travel Sizes

+

Bundle Price: $68 (Save $12)

+

15% savings when purchased together

+
+
+
+
+
+
+ +
+ +
+ +
+ +
+ + +
+ ); +}