diff --git a/src/pages/music/SoundCloudIFrame.jsx b/src/pages/music/SoundCloudIFrame.jsx index 97b0302..2500f4d 100644 --- a/src/pages/music/SoundCloudIFrame.jsx +++ b/src/pages/music/SoundCloudIFrame.jsx @@ -1,4 +1,5 @@ -import {Container} from "@mui/material"; +import {Container, Typography, Button, Grid, Card, CardContent} from "@mui/material"; +import * as React from "react"; export function SoundCloudIFrame({newestContentId}) { if (newestContentId !== null && newestContentId !== undefined) { @@ -11,8 +12,33 @@ export function SoundCloudIFrame({newestContentId}) { return ( -
+
+
+
+
+ + + + + Newest track goes here.. + + To listen to the music, please accept marketing cookies. This allows the website to embed the SoundCloud player. + + + + + +
- ); + ) + ; } }