Skip to content

Commit 0b22e20

Browse files
committed
feat: Add custom logo and favicon to the application
- Replace gradient icon with custom logo.png in header - Add comprehensive favicon support for all devices and browsers - Update page title to 'Code Executives - Interactive Programming Education' - Remove default Vite favicon
1 parent 81333b8 commit 0b22e20

10 files changed

Lines changed: 12 additions & 6 deletions

index.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
6+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
7+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
8+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
9+
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png" />
10+
<link rel="icon" type="image/png" sizes="512x512" href="/android-chrome-512x512.png" />
611
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
12+
<title>Code Executives - Interactive Programming Education</title>
813
</head>
914
<body>
1015
<div id="root"></div>

public/android-chrome-192x192.png

69.7 KB
Loading

public/android-chrome-512x512.png

365 KB
Loading

public/apple-touch-icon.png

62.2 KB
Loading

public/favicon-16x16.png

983 Bytes
Loading

public/favicon-32x32.png

3.06 KB
Loading

public/favicon.ico

15 KB
Binary file not shown.

public/logo.png

74.9 KB
Loading

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/Header.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,11 @@ const Header: React.FC = () => {
200200
className="font-bold tracking-tight text-gray-900 hover:text-indigo-600 transition-colors flex items-center space-x-2"
201201
aria-label="Code Executives Home"
202202
>
203-
<div className="w-8 h-8 bg-gradient-to-br from-indigo-600 to-purple-600 rounded-lg flex items-center justify-center shadow-md">
204-
<Code className="w-4 h-4 text-white" />
205-
</div>
203+
<img
204+
src="/logo.png"
205+
alt="Code Executives Logo"
206+
className="w-8 h-8 rounded-lg shadow-md"
207+
/>
206208
<span className="text-xl hidden sm:inline">Code Executives</span>
207209
</Link>
208210

0 commit comments

Comments
 (0)