Skip to content

Commit bcbc79a

Browse files
feat: add branding (#14)
1 parent 3e7d084 commit bcbc79a

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

app/page.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,27 @@ export default function Home() {
5555

5656
return (
5757
<div className="flex min-h-svh flex-col justify-center">
58+
<header className="absolute top-0 left-0 hidden w-full flex-row justify-between p-6 md:flex">
59+
<a
60+
target="_blank"
61+
rel="noopener noreferrer"
62+
href="https://livekit.io"
63+
className="scale-100 transition-transform duration-300 hover:scale-110"
64+
>
65+
<img src="/lk-logo.svg" alt="LiveKit Logo" className="size-6" />
66+
</a>
67+
<span className="text-foreground font-mono text-xs font-bold tracking-wider uppercase">
68+
Built with{' '}
69+
<a
70+
target="_blank"
71+
rel="noopener noreferrer"
72+
href="https://github.com/livekit/agents"
73+
className="underline underline-offset-4"
74+
>
75+
LiveKit Agents
76+
</a>
77+
</span>
78+
</header>
5879
{sessionStarted ? (
5980
<RoomContext.Provider value={room}>
6081
<SessionView />

public/lk-logo.svg

Lines changed: 18 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)