🚩 (login) create login page

This commit is contained in:
2025-07-14 14:52:50 +07:00
parent 9eb7165023
commit 2770f10747
7 changed files with 108 additions and 38 deletions

View File

@ -0,0 +1,29 @@
import { Button } from "@heroui/react";
import { Icon } from "@iconify/react";
import React from "react";
const ContinueWithProviders = () => {
return (
<div className="w-full flex flex-col gap-2 mt-4">
<Button
className="w-full hover:bg-neutral-800"
variant="bordered"
startContent={<Icon icon="logos:google-icon" />}
>
Continue with Google
</Button>
<Button
className="w-full hover:bg-neutral-800"
variant="bordered"
startContent={<Icon icon="logos:discord-icon" />}
>
Continue with Discord
</Button>
<Button className="w-full" variant="ghost" isDisabled>
Other login options will come soon
</Button>
</div>
);
};
export default ContinueWithProviders;