feat(dashboard): replace Chatwoot widget with HubSpot widget in dashboard layout

- Updated the dashboard layout to use the HubSpotWidget instead of ChatwootWidget.
- Added a new HubSpotWidget component that loads the HubSpot script asynchronously.
This commit is contained in:
Mauricio Siu
2025-12-09 16:46:29 -06:00
parent bd4964f70f
commit 4a74016b52
3 changed files with 33 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
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
/>
);
};