Add Voice Widget V2 to SiteMente pages (disabled by default)

This commit is contained in:
Horus
2026-02-27 19:39:28 +01:00
parent 97811e5acb
commit 20e49139d0
2 changed files with 15 additions and 0 deletions
+7
View File
@@ -5,6 +5,7 @@ import { useSearchParams, useRouter, usePathname } from "next/navigation";
import Image from "next/image";
import { motion } from "framer-motion";
import PaymentButton from "@/components/stripe/PaymentButton";
import MiniMaxVoiceWidgetV2 from "@/components/MiniMaxVoiceWidgetV2";
// import SiteMenteVoiceWidget from "@/components/SiteMenteVoiceWidget";
type Language = "es" | "en";
@@ -537,6 +538,12 @@ function DemosContent() {
businessName={businessName || "SiteMente Demo"}
businessType={selected}
/> */}
<MiniMaxVoiceWidgetV2
businessName={businessName || "SiteMente"}
businessType={selected}
enabled={false}
/>
</div>
);
}