From 734bc31ffd6707c60a92f01a0123494fcdd56442 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 10:41:26 +0000 Subject: [PATCH] Update src/components/sections/about/AboutText.tsx --- src/components/sections/about/AboutText.tsx | 37 --------------------- 1 file changed, 37 deletions(-) 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;