import { motion } from "framer-motion"; import heroImg from "@/assets/hp-laptop.jpg"; const features = [ { icon: "đŸ’ģ", label: "HP ProBook 640" }, { icon: "⚡", label: "Core i3 (4th Gen)" }, { icon: "🛠", label: "4GB RAM" }, { icon: "💾", label: "500GB HDD" }, { icon: "đŸ–Ĩ", label: '14" Display' }, { icon: "🔋", label: "Battery Backup" }, ]; const reasons = [ "Freelancing, Office & Study āĻāϰ āϜāĻ¨ā§āϝ āĻĒāĻžāϰāĻĢ⧇āĻ•ā§āϟ", "Budget Friendly", "Strong & Durable", "Cash on Delivery", ]; const reviews = [ { text: "āĻāχ āĻĻāĻžāĻŽā§‡ āĻāϤ āĻ­āĻžāϞ⧋ āĻ˛ā§āϝāĻžāĻĒāϟāĻĒ āφāĻļāĻž āĻ•āϰāĻŋāύāĻŋ!", name: "āϰāĻžāĻ•āĻŋāĻŦ" }, { text: "Delivery fast āĻ›āĻŋāϞ, āĻ˛ā§āϝāĻžāĻĒāϟāĻĒ āĻāĻ•āĻĻāĻŽ fresh", name: "āϏāĻžāĻŦāϰāĻŋāύāĻž" }, ]; const PHONE = "tel:+8801XXXXXXXXX"; const fadeUp = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.5 } }, }; const Index = () => (
{/* HERO */}
đŸ”Ĩ Freelancing āĻ•āϰāĻžāϰ āϜāĻ¨ā§āϝ āϏ⧇āϰāĻž Laptop

Low Price + High Performance + Cash on Delivery

ā§ŗā§§ā§Ļ,⧝⧝⧝ ā§ŗā§§ā§Š,ā§Ļā§Ļā§Ļ
Stock Limited
{/* IMAGE */} HP ProBook 640 Laptop {/* FEATURES */}

📌 Product Features

{features.map((f) => (
{f.icon} {f.label}
))}
{/* WHY */}

đŸŽ¯ āϕ⧇āύ āĻāχ āĻ˛ā§āϝāĻžāĻĒāϟāĻĒ āύāĻŋāĻŦ⧇āύ?

    {reasons.map((r) => (
  • ✔ {r}
  • ))}
{/* REVIEWS */}

⭐ Customer Reviews

{reviews.map((r) => (

"{r.text}"

— {r.name}

))}
{/* CTA */}

🚀 āĻāĻ–āύāχ āĻ…āĻ°ā§āĻĄāĻžāϰ āĻ•āϰ⧁āύ

đŸ“Ļ Stock: ā§§ā§Ģā§Ļ+  |  🔁 ā§§ā§Ļ āĻĻāĻŋāύ āϰāĻŋāĻĒā§āϞ⧇āϏāĻŽā§‡āĻ¨ā§āϟ

📞 Call Now
{/* STICKY BAR */}
); export default Index;