Quick Start
Welcome to reviewsup.io ! This guide will help you quickly embed user reviews into your application or website.
Step 1: Log In and Preview Sample Reviews
Go to app.reviewsup.io and log in to your account. When you log in for the first time, you’ll see a few sample reviews preloaded into your dashboard—perfect for getting familiar with how things work.
On the Reviews page, click the Status tag in the table to toggle the visibility of each review.
Step 2: Get the Embed Code
Go to the Widgets page, select the default Default Widget, and click the “Add to your website” button in the top right corner to view the auto-generated embed code.
You can copy and paste this snippet directly into your frontend project to quickly display reviews.
Step 3: Integrate Reviewsup into Your Project (Next.js Example)
1. Install the Package
Run the following command in the root directory of your project to install the Reviewsup React component library @reviewsup/embed-react :
npm install @reviewsup/embed-react
2. Import Global Styles
Add the following line to your global.css
file to include Reviewsup’s default styles:
@import '@reviewsup/embed-react/styles.css';
3. Embed the Component
Import and use the component on any page where you want to display reviews:
'use client';
import './global.css';
import { ShowcaseClient } from '@reviewsup/embed-react';
export default function Page() {
return (
<div>
<ShowcaseClient showcaseId={'YOUR_WIDGET_ID'} />
</div>
);
}
Replace
'YOUR_WIDGET_ID'
with the actual Widget ID from your Reviewsup dashboard.
4. Start the Development Server
Run the following command to start your app:
npm run dev
You should now see the Reviewsup review widget rendered on your page.
Example Repository
Want to see more usage examples? Check out our official demo project:
https://github.com/allenyan513/reviewsup-embed-example
If you have any questions, feel free to submit an issue on GitHub or contact us through the official website. Thanks for using Reviewsup — make your product more persuasive with real user reviews!