Integrations

Reviuly is designed to work with any website or framework. From HTML snippets to React components and no-code platforms, here's how to integrate testimonials everywhere.

The embed widget and Wall iframe work on any platform. No backend required — just copy and paste.

HTML (any website)

The simplest integration. Add two lines of HTML anywhere on your page:

index.html
<div data-Testimonials-form-slug="your-form-slug" data-theme="light"></div>
<script src="https://reviuly.com/embed.js" async></script>

React / Next.js

In React or Next.js, load the script using useEffect to avoid SSR issues:

TestimonialsWidget.tsx
'use client'

import { useEffect } from 'react'

export function TestimonialsWidget({ formSlug }: { formSlug: string }) {
  useEffect(() => {
    const script = document.createElement('script')
    script.src = 'https://reviuly.com/embed.js'
    script.async = true
    document.body.appendChild(script)
    return () => { document.body.removeChild(script) }
  }, [])

  return (
    <div
      data-Testimonials-form-slug={formSlug}
      data-theme="light"
    />
  )
}
In Next.js App Router, mark this component with 'use client' since it uses browser APIs.

Or use the Next.js Script component:

page.tsx
import Script from 'next/script'

export default function Page() {
  return (
    <>
      <div data-Testimonials-form-slug="your-slug" data-theme="light" />
      <Script src="https://reviuly.com/embed.js" strategy="lazyOnload" />
    </>
  )
}

WordPress

In WordPress, you can add the embed code to any post, page, or widget using the Custom HTML block.

  1. 1Open the WordPress editor for your page or post
  2. 2Add a new block → Custom HTML
  3. 3Paste the two-line embed code
  4. 4Publish or update the page
Some WordPress caching plugins may interfere. If the widget doesn't load, try clearing the site cache.

Framer

In Framer, use an Embed component:

  1. 1In Framer, open the right panel → Insert → Embed
  2. 2Set the embed source to HTML
  3. 3Paste the two-line embed code
  4. 4Resize the embed container as needed

Webflow

In Webflow, use an Embed element:

  1. 1Drag an Embed element onto your canvas
  2. 2Paste the two-line embed code inside
  3. 3Click Save & Close
  4. 4Publish your Webflow site

Google Reviews

Reviuly connects directly with Google Business Profile to help you grow your Google rating automatically. When a customer submits a testimonial and gives you 3 stars or more, they're shown a prompt asking if they'd also leave a review on Google — with one click to your Google review page.

Plan requirement

Google Review Redirect requires a Starter or Pro plan.

How it works

1

Customer submits a testimonial

They fill out and submit your collection form as normal.

2

Rating is 3★ or above

Only satisfied reviewers see the follow-up prompt — protecting your Google rating from negative reviews.

3

One-click redirect

"Would you also mind leaving a review on Google?" — they click once and land directly on your Google review form.

Setup

  1. 1Navigate to Forms → [Your Form] → Integrations
  2. 2Toggle Google Reviews on
  3. 3Paste your Google Review Page URL (from Google Business Profile → "Get more reviews")
  4. 4Click Save changes
Full Google Review Redirect guide →

Coming soon

More integrations are on the roadmap:

TrustpilotComing soon
G2Coming soon
CapterraComing soon
Slack notificationsComing soon
ZapierComing soon