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 }; } const AboutText = ({ title, primaryButton, secondaryButton, }: AboutTextProps) => { return (
{(primaryButton || secondaryButton) && (
{primaryButton &&
)}
); }; export default AboutText;