Welcome to our Store

Welcome to Foodnirr.com, your trusted multi-shop online marketplace designed to make everyday shopping simple, reliable, and enjoyable.

At Foodnirr.com, we bring together multiple shops under one platform, offering a wide variety of products — from authentic Indonesian food and groceries to fashion, health & beauty, electronics, and home & living essentials. Our goal is to give customers easy access to quality products from trusted sellers, all in one place.

Meet The Team

We work with trusted delivery partners to ensure your orders arrive safely and on time.

Our Mission

Our mission is to connect customers with high-quality products at fair prices while providing a smooth, secure, and satisfying online shopping experience. We aim to support both customers and sellers by creating a platform built on trust, convenience, and value.

Our Commitment

Customer satisfaction is at the heart of everything we do. We are committed to transparency, quality, and continuous improvement to ensure our customers enjoy a safe and enjoyable shopping experience every time they visit Foodnirr.com.

Growing With You

As Foodnirr.com continues to grow, we remain focused on expanding our product range, improving our services, and supporting our sellers and customers worldwide.
Thank you for choosing Foodnirr.com.
We look forward to serving you.
import React, { useState } from 'react'; import { LayoutDashboard, User, Settings, Briefcase, TrendingUp, Truck, Store, Save, Download, Moon, Sun, Globe, MapPin, CheckCircle2 } from 'lucide-react';export default function App() { // Quick Edit State Management const [profileData, setProfileData] = useState({ name: 'Moniuddin', headline: 'Senior Logistics & Vendor Management Expert', location: 'Madinah, Saudi Arabia', about: 'Working to deliver Indonesian lifestyle and products globally through Foodnirr.com. I have 11 years of extensive experience in supply chain and vendor management.' });const [isSaved, setIsSaved] = useState(false);// Input Change Handler const handleInputChange = (e) => { const { name, value } = e.target; setProfileData(prev => ({ ...prev, [name]: value })); };// Save Button Handler const handleSave = () => { setIsSaved(true); setTimeout(() => setIsSaved(false), 3000); };return (
{/* Sidebar */}{/* Main Content */}
{/* Topbar */}

Welcome, {profileData.name}

Your Portfolio & Business Overview

{/* Real-time Metrics */}

Real-time Metrics

{/* Metric Card 1 */}

Legacy in Saudi Arabia

11 Years+

Supply Chain & Marketplace Experience

{/* Metric Card 2 */}

Vendor Network (Foodnirr)

120+

15% growth last month

{/* Metric Card 3 */}

Logistics Status

98%

Successful On-time Delivery Rate

{/* Quick Edit and Preview Section */}
{/* Quick Edit */}

Quick Edit (Portfolio)

{isSaved && ( Saved successfully! )}
{/* Portfolio Preview */}

Live Preview (Branding Control)

{/* Decorative Background */}
{/* Image Placeholder */}

Hello, I'm

{profileData.name}

{profileData.headline}

{profileData.location}

{profileData.about}

); }