rspress-plugin-third-parties Demo

Welcome to the live interactive demo site for rspress-plugin-third-parties!


πŸ—ΊοΈ Live Google Maps Embed

import { GoogleMapsEmbed } from 'rspress-plugin-third-parties';

<GoogleMapsEmbed 
  apiKey="YOUR_API_KEY" 
  mode="place" 
  q="Point Pedro, Sri Lanka" 
  height={400} 
  zoom="14"
/>

🎬 Lazy-Loaded YouTube Player

import { YouTubeEmbed } from 'rspress-plugin-third-parties';

<YouTubeEmbed 
  videoid="sSbDtQTtwBY" 
  height={400} 
  playlabel="Play Rspress Demo" 
/>

🐦 Zero-Overhead Tweet Embed

import { TweetEmbed } from 'rspress-plugin-third-parties';

<TweetEmbed id="2017178323550605790" />

⚑ Custom Script Component

import { Script } from 'rspress-plugin-third-parties';

<Script 
  id="san-web-maker-demo"
  src="https://sanjaiyan-cool.web.app/script/v1/1/SanWebMaker.js" 
  strategy="lazyOnload" 
  onReady={() => {
    window?.sanScrollTop?.("πŸ‘†", "#00001c")
  }}
/>