feat: add icon in renderer
This commit is contained in:
parent
620a6fe5bf
commit
4036cdb962
|
Before Width: | Height: | Size: 164 B After Width: | Height: | Size: 164 B |
|
|
@ -73,7 +73,10 @@ export function FeedColumn({
|
|||
}
|
||||
>
|
||||
<div className="mx-5 flex items-center justify-between">
|
||||
<div className="font-bold text-xl">ReadOK</div>
|
||||
<div className="font-bold text-xl flex items-center gap-1">
|
||||
<img src="./icon.svg" alt="logo" className="h-5 w-5" />
|
||||
ReadOK
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Link to={`/profile`} className="flex">
|
||||
<UserButton className="h-5 p-0" hideName={true} />
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ export function Component() {
|
|||
|
||||
return (
|
||||
<div className="h-screen w-full flex items-center justify-center flex-col gap-10">
|
||||
<img src="./icon.svg" alt="logo" className="h-20 w-20" />
|
||||
<h1 className="text-3xl font-bold">Log in to ReadOK</h1>
|
||||
<div className="flex flex-col gap-3">
|
||||
<Button
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ export function Component() {
|
|||
|
||||
return (
|
||||
<div className="h-screen w-full flex items-center justify-center flex-col gap-10">
|
||||
<img src="./icon.svg" alt="logo" className="h-20 w-20" />
|
||||
<UserButton className="text-2xl bg-stone-100 px-10 py-4" />
|
||||
<h1 className="text-3xl font-bold">
|
||||
Successfully connected to ReadOK Account
|
||||
|
|
|
|||
Loading…
Reference in New Issue