File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 11import Link from 'next/link' ;
22import Image from 'next/image' ;
33
4- // Import logo from public directory for GitHub Pages compatibility
5- import logoImage from '../../../public/mdg.png' ;
6-
74export function Footer ( ) {
85 return (
96 < footer className = "border-border bg-card border-t py-8" >
107 < div className = "container mx-auto px-4" >
118 { /* Logo Section */ }
129 < div className = "mb-8 flex items-center justify-center gap-3" >
1310 < Image
14- src = { logoImage }
11+ src = "/mdg.png"
1512 alt = "GitHub Profile README Generator Logo"
1613 width = { 48 }
1714 height = { 48 }
1815 className = "h-12 w-12"
16+ unoptimized
1917 />
2018 < span className = "text-xl font-bold" > GitHub Profile README Generator</ span >
2119 </ div >
Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ import { ThemeToggle } from '@/components/ui/theme-toggle';
77import { AccessibilityMenu } from '@/components/ui/accessibility-menu' ;
88import { GitHubStats } from '@/components/ui/github-stats' ;
99
10- // Import logo from public directory for GitHub Pages compatibility
11- import logoImage from '../../../public/mdg.png' ;
12-
1310const navigation = [
1411 { name : 'Generator' , href : '/' } ,
1512 { name : 'Addons' , href : '/addons' } ,
@@ -33,12 +30,13 @@ export function Header({}: HeaderProps = {}) {
3330 < div className = "flex items-center gap-4" >
3431 < Link href = "/" prefetch = { true } className = "flex items-center gap-3 hover:opacity-80" >
3532 < Image
36- src = { logoImage }
33+ src = "/mdg.png"
3734 alt = "GitHub Profile README Generator Logo"
3835 width = { 40 }
3936 height = { 40 }
4037 className = "h-10 w-10"
4138 priority
39+ unoptimized
4240 />
4341 < span className = "hidden text-xl font-bold sm:inline-block lg:text-2xl" >
4442 GitHub Profile README Generator
You can’t perform that action at this time.
0 commit comments