"use client"; import { motion } from "framer-motion"; import { Star, ShoppingBag } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { useLocale } from "next-intl"; import { useSaleorCheckoutStore } from "@/stores/saleorCheckoutStore"; import type { Product } from "@/types/saleor"; import { getProductPrice, getProductImage, formatPrice, parseDescription } from "@/lib/saleor"; interface NewHeroProps { featuredProduct?: Product; } export default function NewHero({ featuredProduct }: NewHeroProps) { const locale = useLocale(); const { addLine, openCart } = useSaleorCheckoutStore(); const handleAddToCart = async () => { const variant = featuredProduct?.variants?.[0]; if (variant?.id) { await addLine(variant.id, 1); openCart(); } }; const price = featuredProduct ? getProductPrice(featuredProduct) : ""; const image = featuredProduct ? getProductImage(featuredProduct) : ""; 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 */}

{parseDescription(featuredProduct.description).slice(0, 100) || "Premium natural oil for hair and skin care"}

{/* Tech Badge */}

COLD-PRESSED TECHNOLOGY

Pure extraction method preserving all nutrients and benefits

{/* Price & CTA */}
{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
); }