Index: frontend/src/components/userProfile/ArtistView.tsx
===================================================================
--- frontend/src/components/userProfile/ArtistView.tsx	(revision 4e5cf92d976588170fa715007a49de90e673172a)
+++ frontend/src/components/userProfile/ArtistView.tsx	(revision 77e572b1384712e7d7e1156b69cc0aa2ae48998f)
@@ -1,5 +1,5 @@
 import { useNavigate } from "react-router-dom";
-import { Music, Disc3, Mic2 } from "lucide-react";
-import type { ArtistContributionDTO } from "../../types";
+import { Music, Disc3 } from "lucide-react";
+import type { ArtistContributionDTO } from "../../utils/types";
 
 interface ArtistViewProps {
Index: frontend/src/components/userProfile/ListenerView.tsx
===================================================================
--- frontend/src/components/userProfile/ListenerView.tsx	(revision 4e5cf92d976588170fa715007a49de90e673172a)
+++ frontend/src/components/userProfile/ListenerView.tsx	(revision 77e572b1384712e7d7e1156b69cc0aa2ae48998f)
@@ -1,18 +1,5 @@
 import { useNavigate } from "react-router-dom";
 import { Heart, ListMusic, Music, Album } from "lucide-react";
-
-interface MusicalEntityDTO {
-  id: number;
-  title: string;
-  genre: string;
-  type: string;
-}
-
-interface Playlist {
-  id: number;
-  name: string;
-  cover: string;
-  creatorName: string;
-}
+import type { Playlist, MusicalEntityDTO } from "../../utils/types";
 
 interface ListenerViewProps {
