diff --git a/components/artist.tsx b/components/artist.tsx
index 5abb620..174dca1 100644
--- a/components/artist.tsx
+++ b/components/artist.tsx
@@ -16,13 +16,14 @@ import AccordionDetails from '@mui/material/AccordionDetails';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import ArtistPortfolio from './artistPortfolio';
import Button from '@mui/material/Button';
+import Tooltip from '@mui/material/Tooltip';
import { useEffect, useState } from "react";
import { fetchSeller } from "../services/DiscoveryService";
import { IconButton } from '@mui/material';
-const Artist = ({artistId}) => {
+const Artist = ({user, artistId}) => {
const [sellerData, setSellerData] = useState([]);
useEffect(() => {
const getData = async () => {
@@ -53,8 +54,16 @@ const Artist = ({artistId}) => {
-
-
+
+ {user ? (
+
+ ) : (
+
+
+
+
+
+ )}
diff --git a/pages/index.tsx b/pages/index.tsx
index b231e22..c626926 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -62,7 +62,7 @@ const Home = () => {
) : (
<>
{sellersData.map((item) => (
-
+
))}
>
)}