feat: add favicon and logo

This commit is contained in:
2024-04-21 01:55:31 +02:00
parent f05f8330bb
commit 6998d0a05e
12 changed files with 116 additions and 1 deletions

View File

@@ -14,7 +14,14 @@ export function Layout() {
}
>
<h1 className={"text-2xl font-semibold text-sky-600"}>
<Link to={"/"}>Podcaster</Link>
<Link to={"/"} className={"flex items-center gap-2"}>
<img
src={"/android-chrome-192x192.png"}
className={"h-6 w-6 shrink-0"}
alt={"Podcaster logo"}
/>
Podcaster
</Link>
</h1>
{isLoading && <Spinner />}
</header>