File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
src/modules/song/components Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto' ;
22import { SongViewDtoType } from '@shared/validation/song/dto/types' ;
3+ import Image from 'next/image' ;
34
45import axios from '@web/src/lib/axios' ;
56
67import { LicenseInfo } from './client/LicenseInfo' ;
7- import { SongCanvas } from './client/SongCanvas' ;
88import { SongDetails } from './SongDetails' ;
99import {
1010 DownloadSongButton ,
@@ -49,7 +49,6 @@ export async function SongPage({ id }: { id: string }) {
4949 < div className = 'col-span-full lg:col-span-5 flex flex-col gap-4' >
5050 { /* Song thumbnail */ }
5151 { /* TODO: implement loading https://github.com/vercel/next.js/discussions/50617 */ }
52- { /*
5352 < picture className = 'bg-zinc-800 aspect-[5/3] rounded-xl' >
5453 < Image
5554 width = { 1280 }
@@ -59,9 +58,6 @@ export async function SongPage({ id }: { id: string }) {
5958 className = 'w-full h-full rounded-xl'
6059 />
6160 </ picture >
62- */ }
63-
64- < SongCanvas song = { song } />
6561
6662 < h1 className = 'text-xl font-bold' > { song . title } </ h1 >
6763
You can’t perform that action at this time.
0 commit comments