-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5e1665
commit 4bc114a
Showing
3 changed files
with
11,087 additions
and
15,019 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,68 @@ | ||
import { Button, Input, Gradient, Socials, Box, Stack, Password, Row } from "../components/ui"; | ||
import { | ||
Button, | ||
Input, | ||
Gradient, | ||
Text, | ||
Socials, | ||
Box, | ||
Stack, | ||
Password, | ||
Row, | ||
} from "../components/ui"; | ||
import React from "react"; | ||
|
||
export default function App() { | ||
return ( | ||
<Box className="shadow-inner min-h-screen min-w-fit max-w-96 w-4/12 flex flex-col items-start bg-primary-50/15"> | ||
<Gradient /> | ||
<Stack className="p-8"> | ||
<Input | ||
type="text" | ||
id="username" | ||
placeholder="username" | ||
className="mb-4" | ||
/> | ||
<Row className="mb-1"></Row> | ||
<Password placeholder="password" id="username" className="mb-4" /> | ||
<Button type="submit" variant="solid" width="third"> | ||
Sign in | ||
</Button> | ||
</Stack> | ||
<Socials className="mt-auto self-center justify-self-end p-8" /> | ||
</Box> | ||
<Gradient /> | ||
<Stack className="p-8"> | ||
<Text as="h2" size="5xl" weight="semibold" className="pb-8"> | ||
Sign in | ||
</Text> | ||
<Text as="label" weight="semibold" className="mb-1"> | ||
username | ||
</Text> | ||
<Input | ||
type="text" | ||
id="username" | ||
placeholder="username" | ||
className="mb-4" | ||
/> | ||
<Row className="mb-1"> | ||
<Text as="label" weight="semibold"> | ||
password | ||
</Text> | ||
<Text as="a" variant="link" color="light"> | ||
forgot password? | ||
</Text> | ||
</Row> | ||
<Password placeholder="password" id="username" className="mb-4" /> | ||
<Button type="submit" variant="solid" width="third"> | ||
Sign in | ||
</Button> | ||
</Stack> | ||
<Socials className="mt-auto self-center justify-self-end p-8" /> | ||
</Box> | ||
|
||
// <Box className="shadow-inner min-h-screen min-w-fit max-w-96 w-4/12 flex flex-col items-start bg-primary-50/15"> | ||
// <Gradient /> | ||
// <Stack className="p-8"> | ||
// <Text as="h2" size="5xl" weight="semibold"> | ||
// Sign in | ||
// </Text> | ||
// <Input | ||
// type="text" | ||
// id="username" | ||
// placeholder="username" | ||
// className="mb-4" | ||
// /> | ||
// <Row className="mb-1"></Row> | ||
// <Password placeholder="password" id="username" className="mb-4" /> | ||
// <Button type="submit" variant="solid" width="third"> | ||
// Sign in | ||
// </Button> | ||
// </Stack> | ||
// <Socials className="mt-auto self-center justify-self-end p-8" /> | ||
// </Box> | ||
); | ||
} | ||
|
Oops, something went wrong.