File tree 3 files changed +1
-6
lines changed
src/modules/song/components
3 files changed +1
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto' ;
2
2
import { SongViewDtoType } from '@shared/validation/song/dto/types' ;
3
+ import Image from 'next/image' ;
3
4
4
5
import axios from '@web/src/lib/axios' ;
5
6
6
7
import { LicenseInfo } from './client/LicenseInfo' ;
7
- import { SongCanvas } from './client/SongCanvas' ;
8
8
import { SongDetails } from './SongDetails' ;
9
9
import {
10
10
DownloadSongButton ,
@@ -49,7 +49,6 @@ export async function SongPage({ id }: { id: string }) {
49
49
< div className = 'col-span-full lg:col-span-5 flex flex-col gap-4' >
50
50
{ /* Song thumbnail */ }
51
51
{ /* TODO: implement loading https://github.com/vercel/next.js/discussions/50617 */ }
52
- { /*
53
52
< picture className = 'bg-zinc-800 aspect-[5/3] rounded-xl' >
54
53
< Image
55
54
width = { 1280 }
@@ -59,9 +58,6 @@ export async function SongPage({ id }: { id: string }) {
59
58
className = 'w-full h-full rounded-xl'
60
59
/>
61
60
</ picture >
62
- */ }
63
-
64
- < SongCanvas song = { song } />
65
61
66
62
< h1 className = 'text-xl font-bold' > { song . title } </ h1 >
67
63
You can’t perform that action at this time.
0 commit comments