Skip to content

Commit b8f6489

Browse files
authored
style: use png logo (#2)
1 parent 7a9f389 commit b8f6489

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.github/release-drafter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ categories:
1414
- title: "🔧 Performance Improvements"
1515
labels:
1616
- "perf"
17+
- title: "🎨 Style"
18+
labels:
19+
- "style"
1720
- title: "🧪 Tests"
1821
label: "test"
1922
- title: "🧰 Maintenance"

docs/src/components/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function Footer() {
3939
<div className="group mb-6 flex cursor-pointer items-center space-x-4">
4040
<div className="relative">
4141
<img
42-
src="logo.svg"
42+
src="logo.png"
4343
alt="Logo"
4444
className="glow shimmer h-12 w-12 rounded-2xl transition-transform duration-300 group-hover:scale-110"
4545
/>

docs/src/components/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function Header() {
6161
<div className="flex items-center justify-between">
6262
{/* Logo */}
6363
<div className="flex items-center space-x-4">
64-
<img src="logo.svg" alt="Logo" className="h-14 w-14" />
64+
<img src="logo.png" alt="Logo" className="h-14 w-14" />
6565
<div className="flex flex-col">
6666
<span className="bg-gradient-to-r from-purple-500 via-blue-500 to-cyan-500 bg-clip-text font-bold text-2xl text-transparent">
6767
Typix

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
5+
<link rel="icon" href="/logo.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Typix - Type To Pixels</title>
88
</head>

src/app/components/navigation/GlobalNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function GlobalNavigation({ className }: GlobalNavigationProps) {
6666
target="_blank"
6767
className="mb-2 flex h-14 w-14 items-center justify-center transition-all duration-200 hover:scale-105"
6868
>
69-
<img src="/logo.svg" alt="Logo" className="h-12 w-12" />
69+
<img src="/logo.png" alt="Logo" className="h-12 w-12" />
7070
</a>
7171

7272
{/* Navigation items */}

src/app/routes/chat/-components/chat/ChatMessageItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export function ChatMessageItem({
199199
</>
200200
) : (
201201
<>
202-
<AvatarImage src="/logo.svg" alt={t("chat.ai")} />
202+
<AvatarImage src="/logo.png" alt={t("chat.ai")} />
203203
<AvatarFallback className="bg-gradient-to-br from-muted-foreground to-muted-foreground/80 text-background">
204204
<span className="font-bold text-sm">{t("chat.ai")}</span>
205205
</AvatarFallback>

0 commit comments

Comments
 (0)