The application currently uses a placeholder SVG logo. When you're ready to use your actual logo from Google Drive, follow these steps:
-
Download your logo from Google Drive:
- Link: https://drive.google.com/file/d/1sbUMiNfolgrIJcMlGxHvmYJpZJMSmOAL/view?usp=drivesdk
- Download the file to your computer
-
Replace the logo file:
# Navigate to the assets directory cd assets/ # Remove the placeholder logo rm logo.svg # Copy your logo file # If it's an SVG: cp /path/to/your/logo.svg logo.svg # If it's PNG/JPG, you can also use it: cp /path/to/your/logo.png logo.png # Then update index.html to reference logo.png instead of logo.svg
-
If your logo is PNG/JPG instead of SVG:
- Update line 16 in
index.html:
<!-- Change from: --> <img src="assets/logo.svg" alt="napster Logo" class="logo-img"> <!-- To: --> <img src="assets/logo.png" alt="napster Logo" class="logo-img"> <!-- or logo.jpg if it's a JPEG -->
- Update line 16 in
-
Adjust logo size if needed:
- The logo is currently sized at 40x40 pixels
- To change this, edit
styles/main.cssaround line 59:
.logo-img { width: 40px; /* Change these values */ height: 40px; border-radius: 8px; }
-
Replace the icon (favicon) as well:
# Similar process for the icon rm assets/icon.svg cp /path/to/your/icon.svg assets/icon.svg # Update line 8 in index.html if using PNG: <link rel="icon" type="image/png" href="assets/icon.png">
- Format: SVG (preferred) or PNG with transparent background
- Size: Square aspect ratio (e.g., 200x200px, 512x512px)
- Colors: Should work with the app's purple (#6B5B95) theme
- Icon: Should be recognizable at small sizes (16x16px to 64x64px)
- Refresh your browser
- Check that the logo appears in the navigation bar
- Check that the favicon appears in the browser tab
- Verify it looks good on both light and dark backgrounds
If you encounter any issues replacing the logo, you can:
- Open an issue on GitHub
- Check that the file path is correct
- Verify the image file isn't corrupted
- Make sure the CSS sizing is appropriate for your logo dimensions