Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ categories:
- title: "🔧 Performance Improvements"
labels:
- "perf"
- title: "🎨 Style"
labels:
- "style"
- title: "🧪 Tests"
label: "test"
- title: "🧰 Maintenance"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function Footer() {
<div className="group mb-6 flex cursor-pointer items-center space-x-4">
<div className="relative">
<img
src="logo.svg"
src="logo.png"
alt="Logo"
className="glow shimmer h-12 w-12 rounded-2xl transition-transform duration-300 group-hover:scale-110"
/>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function Header() {
<div className="flex items-center justify-between">
{/* Logo */}
<div className="flex items-center space-x-4">
<img src="logo.svg" alt="Logo" className="h-14 w-14" />
<img src="logo.png" alt="Logo" className="h-14 w-14" />
<div className="flex flex-col">
<span className="bg-gradient-to-r from-purple-500 via-blue-500 to-cyan-500 bg-clip-text font-bold text-2xl text-transparent">
Typix
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typix - Type To Pixels</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/navigation/GlobalNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function GlobalNavigation({ className }: GlobalNavigationProps) {
target="_blank"
className="mb-2 flex h-14 w-14 items-center justify-center transition-all duration-200 hover:scale-105"
>
<img src="/logo.svg" alt="Logo" className="h-12 w-12" />
<img src="/logo.png" alt="Logo" className="h-12 w-12" />
</a>

{/* Navigation items */}
Expand Down
2 changes: 1 addition & 1 deletion src/app/routes/chat/-components/chat/ChatMessageItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function ChatMessageItem({
</>
) : (
<>
<AvatarImage src="/logo.svg" alt={t("chat.ai")} />
<AvatarImage src="/logo.png" alt={t("chat.ai")} />
<AvatarFallback className="bg-gradient-to-br from-muted-foreground to-muted-foreground/80 text-background">
<span className="font-bold text-sm">{t("chat.ai")}</span>
</AvatarFallback>
Expand Down