Skip to content

Commit 2b78e17

Browse files
committed
feat(ui): use kite emoji as logo/favicon and set page title
- Replace layers SVG icon with 🪁 kite emoji in header - Add inline SVG emoji favicon, remove old favicon.ico - Set browser tab title to "Open Generative UI"
1 parent 917d72b commit 2b78e17

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

apps/app/src/app/favicon.ico

-25.3 KB
Binary file not shown.

apps/app/src/app/layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ export default function RootLayout({children}: Readonly<{ children: React.ReactN
1010
return (
1111
<html lang="en">
1212
<head>
13+
<title>Open Generative UI</title>
14+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🪁</text></svg>" />
1315
<link rel="preconnect" href="https://fonts.googleapis.com" />
1416
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
1517
<link

apps/app/src/app/page.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,12 @@ export default function HomePage() {
4747
<div className="flex items-center justify-between gap-4 px-5 py-3">
4848
<div className="flex items-center gap-3 min-w-0 flex-1">
4949
<div
50-
className="flex items-center justify-center shrink-0 w-9 h-9 rounded-lg text-white"
50+
className="flex items-center justify-center shrink-0 w-9 h-9 rounded-lg"
5151
style={{
52-
background: "linear-gradient(135deg, var(--color-lilac), var(--color-mint))",
52+
background: "linear-gradient(135deg, rgba(190,194,255,0.15), rgba(133,224,206,0.12))",
5353
}}
5454
>
55-
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
56-
<path d="M12 2L2 7l10 5 10-5-10-5z" />
57-
<path d="M2 17l10 5 10-5" />
58-
<path d="M2 12l10 5 10-5" />
59-
</svg>
55+
<span className="text-xl leading-none" role="img" aria-label="CopilotKit">🪁</span>
6056
</div>
6157
<p className="text-base font-semibold m-0 leading-snug" style={{ color: "var(--text-primary)" }}>
6258
Open Generative UI

0 commit comments

Comments
 (0)