import Button from "@/components/ui/Button"; import TextAnimation from "@/components/ui/TextAnimation"; interface AboutTextProps { title: string; primaryButton?: { text: string; href: string }; secondaryButton?: { text: string; href: string }; textAnimation: "slide-up" | "fade-blur" | "fade"; } const AboutText = ({ title, primaryButton, secondaryButton, textAnimation, }: AboutTextProps) => { return (
{(primaryButton || secondaryButton) && (
{primaryButton &&
)}
); }; export default AboutText;