Index: frontend/src/pages/LandingPage.tsx
===================================================================
--- frontend/src/pages/LandingPage.tsx	(revision b071fb4a2344e233ee12641fe437797ae1bbb736)
+++ frontend/src/pages/LandingPage.tsx	(revision 591919dcbfc8cdaa28d9cb3a0ab779f85b9a104f)
@@ -350,5 +350,5 @@
 													</h3>
 													<p className="text-sm text-gray-400 mb-3 overflow-hidden text-ellipsis whitespace-nowrap">
-														{"<album>"}
+														{song.album}
 													</p>
 													<p className="text-sm text-gray-400 mb-3 overflow-hidden text-ellipsis whitespace-nowrap">
Index: frontend/src/utils/types.ts
===================================================================
--- frontend/src/utils/types.ts	(revision b071fb4a2344e233ee12641fe437797ae1bbb736)
+++ frontend/src/utils/types.ts	(revision 591919dcbfc8cdaa28d9cb3a0ab779f85b9a104f)
@@ -28,4 +28,5 @@
 export interface Song extends MusicalEntity {
 	type: "SONG";
+	album?: string;
 }
 
