25 lines
524 B
TypeScript
Raw Normal View History

2022-06-25 13:47:07 +08:00
import Header from './Header'
import Popular from './Popular'
import ArtistAlbum from './ArtistAlbums'
import FansAlsoLike from './FansAlsoLike'
2022-08-03 23:48:39 +08:00
import ArtistMVs from './ArtistMVs'
2022-06-25 13:47:07 +08:00
const Artist = () => {
return (
<div>
2022-08-22 16:51:23 +08:00
<Header />
2022-08-03 23:48:39 +08:00
{/* Dividing line */}
2022-06-25 13:47:07 +08:00
<div className='mt-10 mb-7.5 h-px w-full bg-white/20'></div>
2022-08-22 16:51:23 +08:00
<Popular />
2022-06-25 13:47:07 +08:00
<ArtistAlbum />
2022-08-03 23:48:39 +08:00
<ArtistMVs />
2022-06-25 13:47:07 +08:00
<FansAlsoLike />
2022-08-03 23:48:39 +08:00
{/* Page padding */}
<div className='h-16'></div>
2022-06-25 13:47:07 +08:00
</div>
)
}
export default Artist