Book demo model and functionalities added

This commit is contained in:
2026-03-19 13:47:02 +05:30
parent 3e059b0a4c
commit cc6d689e9f
14 changed files with 651 additions and 356 deletions

View File

@@ -3,6 +3,7 @@
import { motion } from "framer-motion";
import { Button } from "@/components/ui/button";
import { useRouter } from "next/navigation";
import DemoModal from "./DemoModal";
export default function HeroSection() {
const router = useRouter();
@@ -34,12 +35,16 @@ export default function HeroSection() {
Start Free Trial
</Button>
<Button
variant="outline"
className="w-full sm:w-auto border-[#2563eb] text-[#2563eb] px-8 py-6 text-base rounded-xl"
>
Schedule Demo
</Button>
<DemoModal
trigger={
<Button
variant="outline"
className="w-full sm:w-auto border-[#2563eb] text-[#2563eb] px-8 py-6 text-base rounded-xl"
>
Schedule Demo
</Button>
}
/>
</div>
</motion.div>