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

{tag}

); }; export default ContactCta;