"use client"; import { motion } from "framer-motion"; import { Star, ShoppingBag } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { useCartStore } from "@/stores/cartStore"; import { WooProduct, formatPrice, getProductImage } from "@/lib/woocommerce"; interface NewHeroProps { featuredProduct?: WooProduct; } export default function NewHero({ featuredProduct }: NewHeroProps) { const { addItem, openCart } = useCartStore(); const handleAddToCart = () => { if (featuredProduct) { addItem({ id: featuredProduct.id, name: featuredProduct.name, price: featuredProduct.price, quantity: 1, image: getProductImage(featuredProduct), sku: featuredProduct.sku, }); openCart(); } }; return (
{/* Background Image */}
{/* Mobile Hero Text */}
Natural Oils,
Real Results
{/* Desktop Floating Product Card */}
{featuredProduct ? ( <> {/* Product Image */}
{featuredProduct.name}
{/* Title & Rating */}

{featuredProduct.name}

{[...Array(5)].map((_, i) => ( ))}
{/* Description */}

{featuredProduct.short_description?.replace(/<[^>]*>/g, "") || "Premium natural oil for hair and skin care"}

{/* Tech Badge */}

COLD-PRESSED TECHNOLOGY

Pure extraction method preserving all nutrients and benefits

{/* Price & CTA */}
{formatPrice(featuredProduct.price)} 50ml
) : (

Loading featured product...

)}
{/* Right Side Content */}
PREMIUM NATURAL OILS

ManoonOils

Discover our premium collection of natural oils for hair and skin care. Handmade with love using only the finest ingredients.

Shop Collection Our Story
{/* Mobile CTA */}
Shop Now
); }