| import { motion } from "framer-motion"; |
| import { ArrowRight, HelpCircle } from "lucide-react"; |
| import { Button } from "@/components/ui/button"; |
| import { Link } from "react-router-dom"; |
|
|
| const CTABanner = () => { |
| return ( |
| <section className="section-padding section-soft-wave"> |
| <div className="container mx-auto px-4 sm:px-8 lg:px-16 flex flex-col md:flex-row items-center justify-between gap-8"> |
| <h2 className="text-2xl sm:text-3xl font-bold text-gray-900 mb-4 md:mb-0">Ready to take control of your health?</h2> |
| <Button className="cta-premium-primary">Book Your Test</Button> |
| </div> |
| </section> |
| ); |
| }; |
|
|
| export default CTABanner; |
|
|