Skip to content

Commit a199006

Browse files
authored
Merge pull request #2 from lokumai/fix/icon-everywhere
Replace old icon with new ones everywhere
2 parents 62d76f9 + 84f53f4 commit a199006

3 files changed

Lines changed: 5 additions & 59 deletions

File tree

src/components/Footer.astro

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,8 @@
99
<!-- Brand section -->
1010
<div class="lg:col-span-2">
1111
<div class="flex items-center space-x-3 mb-4">
12-
<div class="w-8 h-8">
13-
<svg viewBox="0 0 100 100" class="w-full h-full">
14-
<!-- Three stacked lokum cubes - white version -->
15-
<rect x="20" y="60" width="25" height="25" rx="3" fill="#FFB6C1" stroke="#FF69B4" stroke-width="1"/>
16-
<rect x="30" y="40" width="25" height="25" rx="3" fill="#93C5A5" stroke="#7BA05B" stroke-width="1"/>
17-
<rect x="40" y="20" width="25" height="25" rx="3" fill="#E6E6FA" stroke="#D8BFD8" stroke-width="1"/>
18-
<!-- Sugar crystals effect -->
19-
<circle cx="25" cy="65" r="1" fill="white" opacity="0.8"/>
20-
<circle cx="35" cy="70" r="0.8" fill="white" opacity="0.6"/>
21-
<circle cx="45" cy="45" r="1" fill="white" opacity="0.8"/>
22-
<circle cx="55" cy="50" r="0.8" fill="white" opacity="0.6"/>
23-
<circle cx="50" cy="25" r="1" fill="white" opacity="0.8"/>
24-
<circle cx="60" cy="35" r="0.8" fill="white" opacity="0.6"/>
25-
</svg>
12+
<div class="w-12 h-12">
13+
<img src="/images/icon.svg" alt="LokumAI Logo - Three Stacked Turkish Delight Cubes" class="w-full h-full" loading="lazy" decoding="async" />
2614
</div>
2715
<div>
2816
<h3 class="text-lg font-bold font-display">LokumAI</h3>

src/components/Header.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<!-- Logo and Brand -->
88
<div class="flex items-center space-x-3">
99
<a href="/" class="flex items-center space-x-3 hover:opacity-80 transition-opacity">
10-
<div class="w-10 h-10">
11-
<img
10+
<div class="w-16 h-16">
11+
<img
1212
src="/images/icon.svg"
1313
alt="LokumAI Logo - Three Stacked Turkish Delight Cubes"
1414
class="w-full h-full object-contain drop-shadow-sm hover:drop-shadow-md transition-all duration-300"

src/pages/about.astro

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -100,49 +100,7 @@ import Footer from '../components/Footer.astro';
100100
<div class="flex flex-col lg:flex-row items-center gap-8">
101101
<div class="flex-shrink-0">
102102
<div class="w-48 h-48 mx-auto">
103-
<svg viewBox="0 0 100 100" class="w-full h-full drop-shadow-lg">
104-
<!-- Three stacked lokum cubes with enhanced details -->
105-
<defs>
106-
<linearGradient id="pinkCube" x1="0%" y1="0%" x2="100%" y2="100%">
107-
<stop offset="0%" style="stop-color:#FFB6C1"/>
108-
<stop offset="100%" style="stop-color:#FF69B4"/>
109-
</linearGradient>
110-
<linearGradient id="greenCube" x1="0%" y1="0%" x2="100%" y2="100%">
111-
<stop offset="0%" style="stop-color:#93C5A5"/>
112-
<stop offset="100%" style="stop-color:#7BA05B"/>
113-
</linearGradient>
114-
<linearGradient id="purpleCube" x1="0%" y1="0%" x2="100%" y2="100%">
115-
<stop offset="0%" style="stop-color:#E6E6FA"/>
116-
<stop offset="100%" style="stop-color:#D8BFD8"/>
117-
</linearGradient>
118-
</defs>
119-
120-
<!-- Bottom cube - pink -->
121-
<rect x="15" y="55" width="30" height="30" rx="4" fill="url(#pinkCube)" stroke="#FF69B4" stroke-width="1.5"/>
122-
<!-- Middle cube - green -->
123-
<rect x="25" y="35" width="30" height="30" rx="4" fill="url(#greenCube)" stroke="#7BA05B" stroke-width="1.5"/>
124-
<!-- Top cube - purple -->
125-
<rect x="35" y="15" width="30" height="30" rx="4" fill="url(#purpleCube)" stroke="#D8BFD8" stroke-width="1.5"/>
126-
127-
<!-- Enhanced sugar crystals -->
128-
<circle cx="20" cy="60" r="2" fill="white" opacity="0.9"/>
129-
<circle cx="35" cy="75" r="1.5" fill="white" opacity="0.7"/>
130-
<circle cx="40" cy="65" r="1.8" fill="white" opacity="0.8"/>
131-
132-
<circle cx="30" cy="40" r="2" fill="white" opacity="0.9"/>
133-
<circle cx="50" cy="55" r="1.5" fill="white" opacity="0.7"/>
134-
<circle cx="45" cy="45" r="1.8" fill="white" opacity="0.8"/>
135-
136-
<circle cx="40" cy="20" r="2" fill="white" opacity="0.9"/>
137-
<circle cx="60" cy="35" r="1.5" fill="white" opacity="0.7"/>
138-
<circle cx="55" cy="25" r="1.8" fill="white" opacity="0.8"/>
139-
140-
<!-- Sparkle effects -->
141-
<path d="M70 40 L72 42 L70 44 L68 42 Z" fill="white" opacity="0.8"/>
142-
<path d="M18 50 L20 52 L18 54 L16 52 Z" fill="white" opacity="0.8"/>
143-
<path d="M75 20 L77 22 L75 24 L73 22 Z" fill="white" opacity="0.8"/>
144-
<path d="M12 35 L14 37 L12 39 L10 37 Z" fill="white" opacity="0.8"/>
145-
</svg>
103+
<img src="/images/logo-with-background.png" alt="LokumAI Logo - Three Stacked Turkish Delight Cubes" class="w-full h-full drop-shadow-lg" loading="eager" decoding="async" />
146104
</div>
147105
</div>
148106

0 commit comments

Comments
 (0)