import { motion, AnimatePresence } from "framer-motion"; import { useEffect, useState } from "react"; import { Link } from "wouter"; import { Flame, Heart, Leaf, Sparkles } from "lucide-react"; import Box from "@mui/material/Box"; import Container from "@mui/material/Container"; import lavenderImage from "@/assets/images/image-removebg-preview.png"; import roseImage from "@/assets/images/product-rose.png"; import eucalyptusImage from "@/assets/images/product-eucalyptus.png"; import oudImage from "@/assets/images/product-oud.png"; import "./home.css"; const logoPath = "/opengraph.jpg"; const fadeInUp = { hidden: { opacity: 0, y: 40 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: "easeOut" } }, }; const stagger = { visible: { transition: { staggerChildren: 0.2 } }, }; export default function Home() { const moods = [ { title: "Lavender Dreams", subtitle: "Calm your mind. Light your sanctuary.", glow: "#7B3DB8", }, { title: "Rose & Vanilla", subtitle: "Romance captured in every flame.", glow: "#D67896", }, { title: "Eucalyptus Mint", subtitle: "Freshness inspired by nature.", glow: "#7DDCB4", }, { title: "Oud & Amber", subtitle: "Luxury crafted into fragrance.", glow: "#FFB446", }, ]; const [activeMood, setActiveMood] = useState(0); useEffect(() => { const interval = setInterval(() => { setActiveMood((prev) => (prev + 1) % moods.length); }, 8000); return () => clearInterval(interval); }, []); return ( {/* ── Hero ── */}
{[...Array(18)].map((_, i) => ( ))}

{moods[activeMood].title}

Light a Moment. Create a Memory.

{moods[activeMood].subtitle}

Explore Collection
Scroll
{/* ── Philosophy ── */}
The Mani Philosophy
{[ { Icon: Leaf, title: "Natural", desc: "Crafted with pure soy wax and essential oils. Clean burns that respect your home and our earth." }, { Icon: Sparkles, title: "Handmade", desc: "Poured by hand in small batches to ensure unparalleled quality and attention to detail." }, { Icon: Heart, title: "Heartmade", desc: "Every candle is infused with love and intention, designed to bring warmth to your sacred spaces." }, ].map(({ Icon, title, desc }, i) => (

{title}

{desc}

))}
{/* ── Featured Products ── */}

Curated Favorites

View All Candles
{[ { id: 1, name: "Lavender Dream", image: lavenderImage, price: "$28" }, { id: 2, name: "Rose & Vanilla", image: roseImage, price: "$32" }, { id: 3, name: "Eucalyptus Mint", image: eucalyptusImage, price: "$28" }, { id: 4, name: "Oud & Amber", image: oudImage, price: "$36" }, ].map((product, i) => (
{product.name}

{product.name}

{product.price}

))}
{/* ── Quote ── */}
"A candle loses nothing by lighting another candle. It only makes the room warmer, brighter, and more beautiful."
{/* ── Newsletter ── */}

Join Our Sanctuary

Subscribe to receive gentle updates on new collections, exclusive access, and a little light in your inbox.

e.preventDefault()}>
); }