A polished call-to-action button featuring smooth Framer Motion spring animations where call icons transition vertically on hover for an engaging user experience.
"use client" import { BookCallButton } from "@/components/ui/book-a-call-button" export default function Home() { return ( <div className="min-h-screen w-full bg-gradient-to-br from-slate-50 to-slate-100 dark:from-neutral-950 dark:to-neutral-900 flex justify-center items-center"> <BookCallButton onClick={() => { console.log("Book a call clicked!") // Add your booking logic here }} /> </div> ) }