Sign in screen with token retrieval

This commit is contained in:
2024-06-24 22:36:33 +08:00
parent 5eeaade098
commit 94a62f43b2
10 changed files with 191 additions and 8 deletions

18
client/src/icons.tsx Normal file
View File

@@ -0,0 +1,18 @@
export const ChevronLeftIcon = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={1.5}
stroke="currentColor"
className="size-6"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="m8.25 4.5 7.5 7.5-7.5 7.5"
/>
</svg>
);
};