import ScrollReveal from "@/components/ui/ScrollReveal"; import TextAnimation from "@/components/ui/TextAnimation"; import Button from "@/components/ui/Button"; const ContactCta = ({ tag, text, primaryButton, secondaryButton, textAnimation, }: { tag: string; text: string; primaryButton: { text: string; href: string }; secondaryButton: { text: string; href: string }; textAnimation: "slide-up" | "fade-blur" | "fade"; }) => { return (

{tag}

); }; export default ContactCta;