diff --git a/client/src/assets/misc/blackstudentorientationlogo.PNG b/client/src/assets/misc/blackstudentorientationlogo.PNG deleted file mode 100644 index c0215da1..00000000 Binary files a/client/src/assets/misc/blackstudentorientationlogo.PNG and /dev/null differ diff --git a/client/src/assets/misc/bsologo.svg b/client/src/assets/misc/bsologo.svg new file mode 100644 index 00000000..4ccba255 --- /dev/null +++ b/client/src/assets/misc/bsologo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/src/pages/Home/Home.jsx b/client/src/pages/Home/Home.jsx index 0b23f308..2f6538e8 100644 --- a/client/src/pages/Home/Home.jsx +++ b/client/src/pages/Home/Home.jsx @@ -24,8 +24,8 @@ import { Header } from '../../components/text/Header/Header'; import { otherEventsData } from './otherevents'; import ProgressiveImage from '../../components/progressiveImg/ProgressiveImg'; -import blackstudentorientationlogo from '../../assets/misc/blackstudentorientationlogo.png'; import facultylogo from '../../assets/misc/facultylogo.png'; +import bsologo from '../../assets/misc/bsologo.svg'; const PageHome = () => { return ( @@ -34,7 +34,6 @@ const PageHome = () => { - {/* */} ); @@ -229,34 +228,32 @@ const PageAbout = () => { const AboutUsSection = () => { return ( -
-
- <> - {otherEventsData.map((info, index) => { - return ( -
-
- -
-
-
-

{info.title}

-

-
+
+ <> + {otherEventsData.map((info, index) => { + return ( +
+
+ +
+
+
+

{info.title}

+

- ); - })} - -
-
+
+ ); + })} + +
); };