A website inspired by Last.fm that will keep track of your listening statistics
lastfm music statistics
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Small changes to UI components

oscar345 04e5195c a505ce30

+15 -8
+14 -1
web/components/footer/web/Footer.svelte
··· 5 5 </script> 6 6 7 7 <footer> 8 - <div class="container"> 8 + <div class="container content"> 9 9 <p>© 2026 - Keep track</p> 10 10 </div> 11 11 </footer> 12 + 13 + <style> 14 + footer { 15 + background-color: var(--color-base-200); 16 + border-top: var(--theme-default-border); 17 + } 18 + 19 + .content { 20 + padding-block: var(--spacing-4); 21 + display: flex; 22 + justify-content: center; 23 + } 24 + </style>
+1 -7
web/views/Index.svelte
··· 2 2 type Props = {}; 3 3 </script> 4 4 5 - <h1>Home</h1> 6 - 7 - <style> 8 - h1 { 9 - font-size: var(--text-xs); 10 - } 11 - </style> 5 + <h1 class="h1">Home</h1>