diff --git a/src/components/OurTeam/OurTeam.jsx b/src/components/OurTeam/OurTeam.jsx
index 3c47672..8106cbc 100644
--- a/src/components/OurTeam/OurTeam.jsx
+++ b/src/components/OurTeam/OurTeam.jsx
@@ -1,7 +1,7 @@
-import React from "react";
+import Image from "next/image";
import Link from "next/link";
+import React from "react";
import { FaGithub, FaLinkedin } from "react-icons/fa";
-import Image from "next/image";
export default function OurTeam({ t }) {
const data = [
{
@@ -85,6 +85,7 @@ export default function OurTeam({ t }) {
width={100}
height={100}
className='w-32 h-32 border-[#575885] image border-2 rounded-full'
+ alt='profile picture'
/>
{
)}
-
+
+
{!collapsed && userInfo && (
{`${userInfo?.name} ${userInfo?.surname}`}
diff --git a/src/pages/donations/index.jsx b/src/pages/donations/index.jsx
index ed78019..97134f3 100644
--- a/src/pages/donations/index.jsx
+++ b/src/pages/donations/index.jsx
@@ -1,6 +1,5 @@
import { useTranslation } from "next-i18next";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
-import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
@@ -58,7 +57,6 @@ function DonationsPage() {
isRTL={isRTL}
/>
-
);
}
diff --git a/src/pages/index.jsx b/src/pages/index.jsx
index 2bf2018..9fdaffe 100644
--- a/src/pages/index.jsx
+++ b/src/pages/index.jsx
@@ -53,7 +53,7 @@ export default function splashpage() {
diff --git a/src/util/firebase.js b/src/util/firebase.js
index 521f574..700f29c 100644
--- a/src/util/firebase.js
+++ b/src/util/firebase.js
@@ -17,5 +17,5 @@ export const app = initializeApp(firebaseConfig);
export const db = getFirestore(app);
export const imgDB = getStorage(app);
// Initialize Firebase Authentication and get a reference to the service
-
+export const storage = getStorage(app);
export const auth = getAuth(app);