fix: update branding assets, favicon, and correct Overseerr→Jellyseerr in showcase

- Update brand logo images (dark/light variants)
- Replace favicon.ico with optimized version, remove redundant icon.jpg
- Fix Navbar logo dimensions (h-14 for better visibility)
- Remove dead link from installation docs
- Correct AppShowcase: Overseerr → Jellyseerr (template renamed in codebase)
- Rebuild static export
This commit is contained in:
Krystie
2026-08-12 23:37:28 -07:00
parent 8579a29185
commit 6165b8e464
8 changed files with 4 additions and 10 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 25 KiB

-6
View File
@@ -71,12 +71,6 @@ export default function DocsInstallationPage() {
</table>
</div>
<blockquote className="border-l-4 border-brand-500/50 bg-brand-500/5 p-4 rounded-r-lg mt-6">
<p className="text-surface-300">
<strong className="text-brand-400">Note:</strong> DashCaddy can run on Windows and macOS for development, but production deployments should target Linux. Docker Desktop works for testing but is not recommended for production workloads.
</p>
</blockquote>
<h2>Quick start with start.sh</h2>
<p>
The fastest path to a running DashCaddy is the bundled <code>start.sh</code> script. It performs environment
Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 784 B

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 98 KiB

+1 -1
View File
@@ -31,7 +31,7 @@ const apps: App[] = [
{ name: 'Readarr', icon: '📚', category: 'Media Mgmt' },
{ name: 'Prowlarr', icon: '🔍', category: 'Media Mgmt' },
{ name: 'Bazarr', icon: '💬', category: 'Media Mgmt' },
{ name: 'Overseerr', icon: '🎯', category: 'Media Mgmt' },
{ name: 'Jellyseerr', icon: '🎯', category: 'Media Mgmt' },
{ name: 'Tautulli', icon: '📊', category: 'Media Mgmt' },
// Downloads
+3 -3
View File
@@ -40,9 +40,9 @@ export default function Navbar() {
<Image
src={theme === 'dark' ? '/images/brand-wide-light.png' : '/images/brand-wide-dark.png'}
alt="DashCaddy"
width={180}
height={60}
className="h-10 w-auto"
width={349}
height={151}
className="h-14 w-auto"
priority
/>
</Link>