mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-20 14:45:42 +02:00
- Updated the dashboard layout to use the HubSpotWidget instead of ChatwootWidget. - Added a new HubSpotWidget component that loads the HubSpot script asynchronously.
15 lines
244 B
TypeScript
15 lines
244 B
TypeScript
import Script from "next/script";
|
|
|
|
export const HubSpotWidget = () => {
|
|
return (
|
|
<Script
|
|
id="hs-script-loader"
|
|
type="text/javascript"
|
|
src="//js-eu1.hs-scripts.com/147033433.js"
|
|
strategy="lazyOnload"
|
|
async
|
|
defer
|
|
/>
|
|
);
|
|
};
|