// components/CallToActionSection.tsx import React from "react"; import Button from "@/components/ui/Button"; type CallToActionSectionProps = { title: string; subtitle: string; buttonText: string; buttonHref: string; }; const CallToActionSection: React.FC = ({ title, subtitle, buttonText, buttonHref, }) => { return ( // Use primary background, primary-foreground for text
{" "} {/* Adjusted padding */}
{" "} {/* Use container */}

{title}

{" "} {/* Text color inherited */}

{subtitle}

{" "} {/* Slightly less emphasis */} {/* Button needs contrast on primary bg. Use a secondary/outline/custom variant */}
); }; export default CallToActionSection;