Initial commit
This commit is contained in:
commit
2f5e10140c
133 changed files with 10429 additions and 0 deletions
16
packages/web/src/routes/screens/login.tsx
Normal file
16
packages/web/src/routes/screens/login.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import Form from "@/components/screens/login/form";
|
||||
import { Button } from "@tensamin/ui/button";
|
||||
import { A } from "@solidjs/router";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div class="w-full h-full flex flex-col gap-10 items-center justify-center">
|
||||
<Form />
|
||||
<div class="flex">
|
||||
<A href="/signup">
|
||||
<Button variant="outline">Sign up</Button>
|
||||
</A>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue