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
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 25 KiB |
@@ -71,12 +71,6 @@ export default function DocsInstallationPage() {
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</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>
|
<h2>Quick start with start.sh</h2>
|
||||||
<p>
|
<p>
|
||||||
The fastest path to a running DashCaddy is the bundled <code>start.sh</code> script. It performs environment
|
The fastest path to a running DashCaddy is the bundled <code>start.sh</code> script. It performs environment
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 784 B |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 98 KiB |
@@ -31,7 +31,7 @@ const apps: App[] = [
|
|||||||
{ name: 'Readarr', icon: '📚', category: 'Media Mgmt' },
|
{ name: 'Readarr', icon: '📚', category: 'Media Mgmt' },
|
||||||
{ name: 'Prowlarr', icon: '🔍', category: 'Media Mgmt' },
|
{ name: 'Prowlarr', icon: '🔍', category: 'Media Mgmt' },
|
||||||
{ name: 'Bazarr', 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' },
|
{ name: 'Tautulli', icon: '📊', category: 'Media Mgmt' },
|
||||||
|
|
||||||
// Downloads
|
// Downloads
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ export default function Navbar() {
|
|||||||
<Image
|
<Image
|
||||||
src={theme === 'dark' ? '/images/brand-wide-light.png' : '/images/brand-wide-dark.png'}
|
src={theme === 'dark' ? '/images/brand-wide-light.png' : '/images/brand-wide-dark.png'}
|
||||||
alt="DashCaddy"
|
alt="DashCaddy"
|
||||||
width={180}
|
width={349}
|
||||||
height={60}
|
height={151}
|
||||||
className="h-10 w-auto"
|
className="h-14 w-auto"
|
||||||
priority
|
priority
|
||||||
/>
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||