// IMANIQ PRODUCTION-READY STORE // Recommended Stack: // - Next.js 14 // - Tailwind CSS // - Shopify Storefront API // - Stripe Payments // - Vercel Hosting // - Klaviyo Email Marketing // - Sanity CMS (optional) // // INSTALLATION: // 1. Create a Next.js app: // npx create-next-app@latest imaniq-store // // 2. Install Tailwind: // npm install -D tailwindcss postcss autoprefixer // npx tailwindcss init -p // // 3. Replace app/page.js with this file // // 4. Install dependencies: // npm install framer-motion lucide-react // // 5. Deploy to Vercel: // https://vercel.com // // 6. Connect domain: // www.imaniq.com // // PRODUCTION FEATURES TO ADD: // - Shopify product sync // - Product filtering // - Cart drawer // - Secure checkout // - Reviews // - Wishlist // - Instagram feed // - Klaviyo email capture // - SEO metadata // - Analytics // - Cookie banner // - Terms & privacy pages // - Shipping calculator // // RECOMMENDED WEBSITE STRUCTURE: // Home // Shop // Plush Toys // Wooden Toys // Babywear // Eid Collection // About // Journal // Contact // FAQ // Shipping & Returns // // BRAND EXPERIENCE NOTES: // - Keep animations subtle and calm // - Use lots of whitespace // - Keep earthy tones consistent // - Photography should feel warm and natural // - Avoid cluttered layouts // - Maintain luxury minimalism throughout // // IMAGE RECOMMENDATIONS: // Hero Images: 2400px wide // Product Images: 2000x2000px // Lifestyle Images: warm natural lighting // // COLOUR PALETTE: // Sage Green: #7A866B // Warm Sand: #D9C7A7 // Cream: #F6F1EA // Olive: #5D6B4D // Muted Gold: #C9A15B // // TYPOGRAPHY: // Headings: Cormorant Garamond // Body: Inter // // PERFORMANCE TARGETS: // Google Lighthouse 90+ // Mobile-first optimisation // Lazy-loaded images // Optimised SEO metadata // export default function ImaniqHomepage() { const collections = [ { title: 'Plush Toys', image: 'https://images.unsplash.com/photo-1545558014-8692077e9b5c?q=80&w=1200&auto=format&fit=crop', }, { title: 'Wooden Toys', image: 'https://images.unsplash.com/photo-1515488042361-ee00e0ddd4e4?q=80&w=1200&auto=format&fit=crop', }, { title: 'Babywear', image: 'https://images.unsplash.com/photo-1519238263530-99bdd11df2ea?q=80&w=1200&auto=format&fit=crop', }, { title: 'Eid Collection', image: 'https://images.unsplash.com/photo-1512436991641-6745cdb1723f?q=80&w=1200&auto=format&fit=crop', }, ]; const bestSellers = [ { title: 'Muslim Friendly Sheep', price: '£24.00', image: 'https://images.unsplash.com/photo-1581497396202-5645e76a3a8e?q=80&w=1200&auto=format&fit=crop', }, { title: 'Masjid Wooden Blocks', price: '£42.00', image: 'https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1200&auto=format&fit=crop', }, { title: 'Olive Green Romper', price: '£22.00', image: 'https://images.unsplash.com/photo-1519345182560-3f2917c472ef?q=80&w=1200&auto=format&fit=crop', }, { title: 'Wooden Stacking Rings', price: '£18.00', image: 'https://images.unsplash.com/photo-1596464716127-f2a82984de30?q=80&w=1200&auto=format&fit=crop', }, ]; return (
{/* Announcement Bar */}
FREE UK DELIVERY ON ORDERS OVER £60
{/* Header */}

imaniq

Little Hearts. Big Faith.

{/* Hero Section */}

Faith. Love. Everyday.

Thoughtfully designed
for little hearts.

Beautiful faith-inspired toys, babywear and keepsakes created to nurture comfort, connection and meaningful play.

imaniq sheep toy

Featured Product

Muslim Friendly Sheep

Soft plush comfort toy designed without facial features in keeping with your brand values.

{/* Features */}
{[ 'Faith-Inspired Design', 'Sustainable Materials', 'Made For Little Hearts', 'Designed In The UK', 'Beautifully Gifted', ].map((item) => (

{item}

))}
{/* Collections */}

Explore Our Collections

Rooted in faith.

{collections.map((item) => (
{item.title}

{item.title}

))}
{/* Brand Story */}
imaniq lifestyle

Our Story

More than products. It's a way of life.

imaniq was created to bring together thoughtful design, meaningful simplicity and faith-led childhood moments.

Every product is designed to feel calm, timeless and intentional — helping families create beautiful everyday memories.

{/* Best Sellers */}

Best Sellers

Loved by families.

{bestSellers.map((item) => (
{item.title}

{item.title}

{item.price}

))}
{/* Newsletter */}

Join The imaniq Family

Gentle reminders. New arrivals. Special moments.

{/* Footer */}
); }