Skip to content

Commit be0ae46

Browse files
committed
Add premium favicon and web manifest
- Created high-quality SVG favicon with gold gradient 'A' logo - Added glow effect filter for visual polish - Updated head.html with comprehensive favicon support (SVG + PNG fallback) - Added Apple touch icon support for iOS devices - Created site.webmanifest for PWA support - Configured theme colors matching site's black and gold palette - SVG favicon scales perfectly at any size with no quality loss
1 parent 3bd3b5a commit be0ae46

File tree

4 files changed

+55
-1
lines changed

4 files changed

+55
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ A modern, professional portfolio website with automated LinkedIn profile sync an
55
## Features
66

77
### 🎨 Modern UI/UX
8+
89
- **Enhanced Typography** - Large, bold headlines with improved hierarchy
910
- **Glassmorphism Design** - Backdrop blur effects and layered depth
1011
- **Micro-interactions** - Smooth hover states and animations

_includes/head.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
2828

2929
<!-- Favicon -->
30-
<link rel="icon" type="image/png" href="{{ '/assets/images/favicon.png' | relative_url }}">
30+
<link rel="icon" type="image/svg+xml" href="{{ '/assets/images/favicon.svg' | relative_url }}">
31+
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/images/favicon.png' | relative_url }}">
32+
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/images/favicon.png' | relative_url }}">
33+
<link rel="manifest" href="{{ '/site.webmanifest' | relative_url }}">
3134

3235
<!-- RSS Feed -->
3336
{%- feed_meta -%}

assets/images/favicon.svg

Lines changed: 29 additions & 0 deletions
Loading

site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Awar Abdulkarim",
3+
"short_name": "Awar",
4+
"description": "Cloud Platform Engineer specializing in Azure, Kubernetes, and DevOps automation",
5+
"icons": [
6+
{
7+
"src": "/assets/images/favicon.png",
8+
"sizes": "192x192",
9+
"type": "image/png"
10+
},
11+
{
12+
"src": "/assets/images/favicon.svg",
13+
"sizes": "any",
14+
"type": "image/svg+xml"
15+
}
16+
],
17+
"theme_color": "#0D0D0D",
18+
"background_color": "#0D0D0D",
19+
"display": "standalone",
20+
"start_url": "/"
21+
}

0 commit comments

Comments
 (0)