Add reviews to your appin one command.
Copy production-ready ReviewForm and ReviewList components directly into your project — no black-box SDK, no lock-in.
# 1. Configure once
$ npx @reviewlico/cli init
✓ Detected Next.js · Tailwind
# 2. Copy component source into your project
$ npx @reviewlico/cli add ReviewForm
✓ Copied ReviewForm.tsx → components/reviews/
✓ Copied StarRating.tsx → components/reviews/
# 3. Set two env vars and you're done
NEXT_PUBLIC_REVIEWLICO_API_URL=https://api.reviewlico.dev
NEXT_PUBLIC_REVIEWLICO_API_KEY=rk_your_key_hereEverything your review pipeline needs
From CLI to dashboard, every layer is built for developers who care about what goes into production.
Copy, don't import
npx @reviewlico/cli add ReviewForm copies the full component source into your project — you own the file, you control every pixel, forever.
Plain CSS or Tailwind — your call
Choose BEM + CSS custom properties for zero-framework overhead, or ship the Tailwind dark-theme preset with animations included.
Auto-configures for Next.js and Vite
The CLI detects your framework and Tailwind setup on first run, setting the right env var prefixes automatically.
Multi-product support built in
Pass externalProductId to any component and reviews are automatically scoped — one account, many products, no data mixing.
Approve, reject, stay in control
A private dashboard lets you moderate reviews, manage team members, and generate API keys — without touching the codebase.
Keys shown once, stored as a hash
Your raw API key is displayed exactly once on creation; only the SHA-256 hash is ever persisted — no plaintext secrets in a database.
Two style variants
Your files. Your styles.Plain CSS variant
Imports a single review-components.css file at your app root. Zero Tailwind dependency. Ideal for projects that already have their own CSS setup.
Write a Review
From zero to embedded in minutes
No SDK to pin, no iframe to fight. Just your own components talking to a clean API.
- 1
Create your account
Register, verify your email, and create your first organization. Generate an API key — shown once.
$# reviewlico.dev/register - 2
Run CLI init
The CLI detects your framework and Tailwind setup automatically. Pick a style variant and you're configured.
$npx @reviewlico/cli init - 3
Add a component and ship
Copy ReviewForm or ReviewList into your project, set two env vars, and drop the JSX anywhere in your app.
$npx @reviewlico/cli add ReviewForm