From 7f330e645ad6e3040d641ce20fd7c055999eb17c Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Tue, 15 Oct 2024 07:33:10 -0500 Subject: [PATCH] Change Learn More links to be cards instead --- client/src/components/AboutUs.tsx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/client/src/components/AboutUs.tsx b/client/src/components/AboutUs.tsx index 74e9e41..3ae190a 100644 --- a/client/src/components/AboutUs.tsx +++ b/client/src/components/AboutUs.tsx @@ -34,16 +34,15 @@ const AboutUs: React.FC = () => { }; const AboutSection: React.FC<{ title: string; description: string; link: string }> = ({ title, description, link }) => ( - -

{title}

-

{description}

- - Learn More - -
+ + +

{title}

+

{description}

+
+ ); export default AboutUs;