/* eslint-disable @typescript-eslint/no-unused-vars */ 'use client'; import { ScrollArea, ScrollBar } from '@/components/ui/scroll-area'; import { Separator } from '@/components/ui/separator'; import { Tabs, TabsContent } from '@/components/ui/tabs'; import { AlbumArtwork } from '@/app/components/album-artwork'; import { ArtistIcon } from '@/app/components/artist-icon'; import { useNavidrome } from '@/app/components/NavidromeContext'; import Loading from '@/app/components/loading'; export default function BrowsePage() { const { albums, artists, isLoading } = useNavidrome(); if (isLoading) { return ; } return (
<>

Artists

the people who make the music

{artists.map((artist) => ( ))}

Browse

Browse the full collection of music available.

{albums.map((album) => ( ))}
); }