procurenow

ProcureNow!

Malaysia’s E-Sourcing & E-Procurement Platform

Live Demo GitHub Pages Made in Malaysia License: MIT


About

ProcureNow! is a full-featured e-sourcing and e-procurement platform built specifically for the Malaysian market. It connects buyers with verified suppliers across critical CAPEX and OPEX categories — from interior fit-out contractors and architects to commercial cleaning companies and scent marketing specialists.

The platform covers the complete procurement lifecycle: discovering suppliers, issuing formal procurement requests (RFQ, RFP, RFI, RFT), managing live tenders, comparing responses, and awarding contracts — all from a single, intuitive interface.

Available on Web, Android (Google Play) and iOS (App Store).


Features

Supplier Directory

Live Tender Board

RFx Management

Business Partner Programme

Platform Access


Supplier Categories

Category Verified Suppliers
Fit-Out & Design VMG Work Sdn Bhd · Interiors Fit Out Industry Sdn Bhd · DMZ International Design Group
Architecture Arkitek Maju Associates · Green Dimensions Architects
Lighting Lumen Illumination Sdn Bhd · Mr Bright Lighting Sdn Bhd · LigLED Sdn Bhd
AV Systems Integrated Audio Visual Sdn Bhd · Cubexis Sdn Bhd · AV Solutions Integrated Sdn Bhd
Flooring Floorinc Sdn Bhd · Primelay Smart Flooring · Durafloor Sdn Bhd · HANYO Industrial
Cleaning Services Maclean Sdn Bhd · Malaysian Harvest Sdn Bhd · Hispec Maintenance · Malaysian Cleansing Services
Scents & Fragrance WellnessRoen · Scent Up Aroma Marketing · Scentpur Manufacturing · S W Aroma Sdn Bhd

Tech Stack

Component Technology
Frontend HTML5, CSS3, JavaScript ES6+
Typography Outfit (Google Fonts), JetBrains Mono
Layout CSS Grid, Flexbox, CSS Custom Properties
Icons Inline SVG only — no emoji, no icon fonts
Animation CSS keyframes and transitions
Backend None — fully static, zero dependencies
Deployment GitHub Pages, Netlify, Vercel

Project Structure

procurenow/
├── index.html          Main application (single file)
├── README.md           This file
├── LICENSE             MIT License
├── .gitignore
└── docs/
    ├── ProcureNow_Commercial_Agreement.docx
    ├── ProcureNow_NDA.docx
    └── ProcureNow_Tender_Template.docx

Quick Start

# Clone
git clone https://github.com/YOUR_USERNAME/procurenow.git
cd procurenow

# Open directly — no build step required
open index.html

# Or serve locally
npx serve .

Deploy to GitHub Pages

Step 1 — Create a repository

  1. Go to github.com/new
  2. Name it procurenow
  3. Set visibility to Public
  4. Do not initialise with README
  5. Click Create repository

Step 2 — Push your code

git init
git add .
git commit -m "feat: initial ProcureNow! release"
git branch -M main
git remote add origin https://github.com/YOUR_USERNAME/procurenow.git
git push -u origin main

Step 3 — Enable GitHub Pages

  1. Repository → SettingsPages
  2. Source: Deploy from a branch
  3. Branch: main / Folder: / (root)
  4. Click Save

Live at: https://YOUR_USERNAME.github.io/procurenow


Deploy to Netlify

Drag and drop:

  1. Go to app.netlify.com/drop
  2. Drag the procurenow folder onto the page
  3. Rename under Site Settings

Connect GitHub:

  1. Add new site → Import from GitHub → select procurenow
  2. Build command: leave empty
  3. Publish directory: /
  4. Deploy

Every push to main redeploys automatically.


Adding Suppliers

Edit the VENDORS array in index.html:

{
  id: 25,
  cat: 'flooring',        // fitout | arch | lighting | av | flooring | cleaning | scents
  name: 'New Supplier Sdn Bhd',
  ini: 'NS',              // 2-letter logo initials
  color: '#059669',
  bg: '#ECFDF5',
  loc: 'kl',              // kl | selangor | penang | johor | nationwide
  locTxt: 'Kuala Lumpur',
  rating: 4,
  projects: 50,
  featured: false,
  verified: true,
  tags: ['Tag 1', 'Tag 2'],
  email: 'info@supplier.com.my',
  phone: '+60 3-XXXX XXXX',
  website: 'supplier.com.my',
  desc: 'Company description.',
  services: ['Service 1', 'Service 2'],
}

Adding Tenders

Edit the TENDERS array in index.html:

{
  id: 'TND-011',
  title: 'Project Title',
  company: 'Issuing Company',
  companyIni: 'IC',
  companyColor: '#6366F1',
  companyBg: '#EEF2FF',
  cat: 'fitout',
  budget: 'RM 100,000',
  deadline: '30 Apr 2026',
  posted: '16 Mar 2026',
  status: 'open',         // new | open | closing | awarded
  statusLabel: 'Open',
  location: 'Kuala Lumpur',
  scope: 'Project description...',
  docs: ['Document 1'],
  tags: ['Tag 1'],
  responses: 0,
  type: 'RFQ',            // RFQ | RFP | RFI | RFT
}

Roadmap


Pre-drafted templates in /docs/:

Document Purpose
ProcureNow_Commercial_Agreement.docx Platform subscription and commercial services agreement
ProcureNow_NDA.docx Mutual non-disclosure agreement
ProcureNow_Tender_Template.docx Standard tender preparation template

Contact


License

MIT License — see LICENSE for details.

Built for Malaysian procurement professionals.