diff --git a/src/components/sections/about/AboutText.tsx b/src/components/sections/about/AboutText.tsx index 54d7edc..e69de29 100644 --- a/src/components/sections/about/AboutText.tsx +++ b/src/components/sections/about/AboutText.tsx @@ -1,37 +0,0 @@ -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;