Premium E-Commerce Platform Curated for the Modern Luxury Marketplace
AUREON is a premium e-commerce platform curated for the modern luxury marketplace. It delivers a high-fidelity visual experience optimized for elite collectors and high-net-worth clientele. Featuring a customer marketplace, specialized VIP tiers, live streaming, interactive auctions, and robust merchant/admin dashboards.
- Dark Luxury Visual System: Deep void black backgrounds (
#0A0A0F), sleek slate surfaces (#12121A), and refined champagne gold highlights (#C9A96E). - VIP & Membership Club: Tabbed point dashboards, milestone status grids, and premium concierge chat interfaces.
- Interactive Live Commerce: Simulated real-time auction bidding matrixes, countdown drop schedules, and live video commerce displays.
- Integrated Vendor Portals: A self-contained dashboard enabling merchants to audit sales, adjust stock volumes directly, register catalog additions, and request payouts.
- Administrative Console: Live logs audit tracker, system maintenance config control flags, and merchant registration approval decks.
┌────────────────────────────────────────────────────────┐
│ AUREON PLATFORM │
├───────────────────────────┬────────────────────────────┤
│ FRONTEND │ CI/CD ENGINE │
│ (Vercel) │ (GitHub Actions) │
│ │ │
│ React SPA (Vite) │ ci.yml (Compilation) │
│ React Router v7 │ deploy-web.yml (Vercel) │
│ Tailwind CSS v4 │ deploy-staging.yml │
│ Framer Motion + GSAP │ security.yml (Audit) │
└───────────────────────────┴────────────────────────────┘
Aureon/
├── .github/
│ ├── ISSUE_TEMPLATE/ # Issue templates
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ ├── CODEOWNERS # File ownership configuration
│ ├── copilot-instructions.md# Context guide for GitHub Copilot
│ ├── pull_request_template.md
│ └── workflows/ # GitHub Actions CI/CD workflows
│ ├── ci.yml
│ ├── deploy-staging.yml
│ ├── deploy-web.yml
│ └── security.yml
├── assets/ # Media assets
├── dist/ # Production built output
├── src/
│ ├── app/
│ │ ├── components/ # Layout & custom interactive elements
│ │ ├── data/ # Mock database arrays (products, reviews)
│ │ ├── pages/ # Portal pages & dashboard views
│ │ ├── routes.ts # Unified Router definitions
│ │ └── main.tsx # Application entry point
├── render.yaml # Render static hosting configuration
├── package.json # Package script lists & dependencies
└── index.html # HTML viewport entry
Both portal sites are protected by mock validation checks. Authenticate using the coordinates below:
- Route:
/admin/dashboard - Credentials:
- Email:
admin@aureon.com - Password:
admin123
- Email:
- Features: Live platform logs, pending vendor approvals, and system multiplier configuration switches.
- Route:
/vendor/dashboard - Credentials:
- Email:
vendor@aureon.com - Password:
vendor123
- Email:
- Features: Dynamic inventory stock adjusters, payout ledger requests, and catalog product creation.
Deploy dependencies locally using npm:
npm installBoot Vite local hot-reloader:
npm run devOpen http://localhost:5173/ inside your browser.
Run the TypeScript validation tool:
npx tsc --noEmitGenerate minified static site bundles inside the /dist directory:
npm run buildAureon maintains three primary long-lived branches:
main(Production): Always stable and mirrors the live deployment.staging(Pre-production): Used for staging deployment verification.develop(Integration): Active development line for merges.
