Skip to content

Commit 3106d8d

Browse files
committed
refactor: change logo
1 parent 088b5ef commit 3106d8d

File tree

12 files changed

+15
-51
lines changed

12 files changed

+15
-51
lines changed

assets/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.1.3
4+
5+
- Update logo: white curves on gradient background, increased curve width
6+
- Replace inline Logo component with static SVG asset (`/logo.svg`)
7+
38
## v0.1.2
49

510
- Fix memory leak: `sync_log` table growing unbounded — add periodic pruning of entries older than 30 days

landing/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
AI Sync
113113
<span
114114
class="rounded-full bg-muted px-1.5 py-0.5 text-xs h-fit font-medium text-muted-foreground"
115-
>v0.1.2</span
115+
>v0.1.3</span
116116
>
117117
</a>
118118
<div class="flex items-center gap-3">

landing/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ai-sync",
33
"author": "Anh-Thi Dinh",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"repository": "https://github.com/anhthiding/ai-sync",
66
"private": true,
77
"license": "MIT",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ai-sync/server",
33
"author": "Anh-Thi Dinh",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"repository": "https://github.com/anhthiding/ai-sync",
66
"private": true,
77
"license": "MIT",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ai-sync/ui",
33
"author": "Anh-Thi Dinh",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"repository": "https://github.com/anhthiding/ai-sync",
66
"private": true,
77
"license": "MIT",

packages/ui/public/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

packages/ui/src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { useState, useEffect, lazy, Suspense } from 'react';
22
import { BrowserRouter, Routes, Route } from 'react-router-dom';
33
import { Toaster } from 'sonner';
44
import { Layout } from '@/components/layout';
5-
import { Logo } from '@/components/logo';
65
import { DashboardPage } from '@/pages/dashboard';
76
import { SetupPage } from '@/pages/setup';
87
import { api } from '@/lib/api';
@@ -48,7 +47,7 @@ export default function App() {
4847
if (configured === null) {
4948
return (
5049
<div className="min-h-screen flex flex-col items-center justify-center gap-4 bg-background">
51-
<Logo className="h-14 w-14" />
50+
<img src="/logo.svg" alt="AI Sync" className="h-14 w-14" />
5251
<div className="flex items-center gap-2 text-muted-foreground">
5352
<Loader2 className="h-4 w-4 animate-spin" />
5453
<span className="text-sm">Starting server...</span>

packages/ui/src/components/layout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Button } from '@/components/ui/button';
22
import { api } from '@/lib/api';
33
import { cn } from '@/lib/utils';
4-
import { Logo } from '@/components/logo';
54
import {
65
BookOpen,
76
Database,
@@ -103,7 +102,7 @@ export function Layout({ children, dataDir }: { children: React.ReactNode; dataD
103102
<header className="border-b border-border/80 bg-white/95 backdrop-blur-sm supports-backdrop-filter:bg-white/60">
104103
<div className="mx-auto w-full max-w-7xl flex h-14 items-center px-4 gap-4 sm:gap-6 sm:px-6">
105104
<Link to="/" className="flex shrink-0 items-center gap-2">
106-
<Logo className="h-8 w-8" />
105+
<img src="/logo.svg" alt="AI Sync" className="h-8 w-8" />
107106
<span className="inline text-base font-semibold tracking-tight">AI Sync</span>
108107
</Link>
109108

0 commit comments

Comments
 (0)