You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
749B

  1. import SpotifyPlayer from 'react-spotify-player';
  2. import AboutLink from '../components/about-link';
  3. import NextEpisode from '../components/next-episode';
  4. export default function Home() {
  5. return (
  6. <div className="grid md:grid-cols-3 grid-cols-2 gap-3 p-3">
  7. <article className="col-span-full md:col-span-2">
  8. <SpotifyPlayer
  9. uri="spotify:episode:0nzzRPNa4j01gl0limItJG"
  10. size={{
  11. height: '100%',
  12. width: '100%'
  13. }}
  14. view='coverart'
  15. theme='black'
  16. />
  17. </article>
  18. <article className=" col-span-1 h-3/4">
  19. <NextEpisode />
  20. </article>
  21. <article className=" col-span-1 h-3/4">
  22. <AboutLink />
  23. </article>
  24. </div>
  25. )
  26. }