Add Voice Widget V2 to SiteMente pages (disabled by default)
This commit is contained in:
@@ -5,6 +5,7 @@ import { useSearchParams, useRouter, usePathname } from "next/navigation";
|
|||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { motion } from "framer-motion";
|
import { motion } from "framer-motion";
|
||||||
import PaymentButton from "@/components/stripe/PaymentButton";
|
import PaymentButton from "@/components/stripe/PaymentButton";
|
||||||
|
import MiniMaxVoiceWidgetV2 from "@/components/MiniMaxVoiceWidgetV2";
|
||||||
// import SiteMenteVoiceWidget from "@/components/SiteMenteVoiceWidget";
|
// import SiteMenteVoiceWidget from "@/components/SiteMenteVoiceWidget";
|
||||||
|
|
||||||
type Language = "es" | "en";
|
type Language = "es" | "en";
|
||||||
@@ -537,6 +538,12 @@ function DemosContent() {
|
|||||||
businessName={businessName || "SiteMente Demo"}
|
businessName={businessName || "SiteMente Demo"}
|
||||||
businessType={selected}
|
businessType={selected}
|
||||||
/> */}
|
/> */}
|
||||||
|
|
||||||
|
<MiniMaxVoiceWidgetV2
|
||||||
|
businessName={businessName || "SiteMente"}
|
||||||
|
businessType={selected}
|
||||||
|
enabled={false}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import HeroSlider, {
|
|||||||
import JsonLdSchemas from "../components/site-mente/JsonLdSchemas";
|
import JsonLdSchemas from "../components/site-mente/JsonLdSchemas";
|
||||||
import ServicesAndPricing from "../components/site-mente/ServicesAndPricing";
|
import ServicesAndPricing from "../components/site-mente/ServicesAndPricing";
|
||||||
import SeoMeta from "../components/site-mente/SeoMeta";
|
import SeoMeta from "../components/site-mente/SeoMeta";
|
||||||
|
import MiniMaxVoiceWidgetV2 from "../components/MiniMaxVoiceWidgetV2";
|
||||||
// Old widget disabled - using V2 only
|
// Old widget disabled - using V2 only
|
||||||
// import SiteMenteVoiceWidget from "../components/SiteMenteVoiceWidget";
|
// import SiteMenteVoiceWidget from "../components/SiteMenteVoiceWidget";
|
||||||
|
|
||||||
@@ -1184,6 +1185,13 @@ export default function HomePage() {
|
|||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
{/* AI Voice Widget - Disabled by default for testing */}
|
||||||
|
<MiniMaxVoiceWidgetV2
|
||||||
|
businessName="SiteMente"
|
||||||
|
businessType="default"
|
||||||
|
enabled={false}
|
||||||
|
/>
|
||||||
|
|
||||||
<footer className="bg-brand-purple-dark">
|
<footer className="bg-brand-purple-dark">
|
||||||
<div className="mx-auto flex w-full max-w-6xl flex-col gap-6 px-6 py-12 md:flex-row md:items-center md:justify-between">
|
<div className="mx-auto flex w-full max-w-6xl flex-col gap-6 px-6 py-12 md:flex-row md:items-center md:justify-between">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user