-
+
+
+
diff --git a/frontend/src/components/NavBar.tsx b/frontend/src/components/NavBar.tsx
index 21aef93..93840c0 100644
--- a/frontend/src/components/NavBar.tsx
+++ b/frontend/src/components/NavBar.tsx
@@ -8,7 +8,7 @@ export const NavBar: React.FC = () => {
const { user, loginWithSpotifyProps } = useAuth();
return (
-
Listory
- +
Logging in
+
Listory
diff --git a/frontend/src/components/RecentListens.tsx b/frontend/src/components/RecentListens.tsx
index 8664606..1c97400 100644
--- a/frontend/src/components/RecentListens.tsx
+++ b/frontend/src/components/RecentListens.tsx
@@ -32,7 +32,9 @@ export const RecentListens: React.FC = () => {
-
- Recent listens
++ Recent listens +
+
{isLoading && }
{recentListens.length === 0 && (
-
-
Could not find any listens!
+
+
)}
+ Could not find any listens! +
{recentListens.length > 0 && (
-
+
{recentListens.map((listen) => (
))}
@@ -69,6 +73,9 @@ const Pagination: React.FC<{
setPage: (newPage: number) => void;
}> = ({ page, totalPages, setPage }) => {
const disabledBtn = "opacity-50 cursor-default";
+ const hoverBtn = "hover:bg-gray-400 dark:hover:bg-gray-600";
+ const defaultBtn =
+ "bg-gray-300 dark:bg-gray-700 text-gray-700 dark:text-gray-300 font-bold py-2 px-4";
const pageButtons = getPaginationItems(page, totalPages, 1);
const isFirstPage = page === 1;
@@ -78,8 +85,8 @@ const Pagination: React.FC<{