snowballtools-base/packages/frontend/src/pages/AuthPage.tsx
nabarun bc52b34462 Implement authentication with SIWE (#4)
Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75)

- Remove LIT authentication

Co-authored-by: Neeraj <neeraj.rtly@gmail.com>
Reviewed-on: cerc-io/snowballtools-base#4
2024-10-18 12:47:11 +00:00

29 lines
815 B
TypeScript

import { CloudyFlow } from 'components/CloudyFlow';
import { Login } from './auth/Login';
const AuthPage = () => {
return (
<CloudyFlow className="flex flex-col min-h-screen">
<div className="py-8 relative z-10">
<div className="flex justify-center items-center gap-2.5">
<img
src="/logo.svg"
alt="snowball logo"
className="h-10 rounded-xl"
/>
<div className="text-sky-950 text-2xl font-semibold font-display leading-loose">
Snowball
</div>
</div>
</div>
<div className="pb-12 relative z-10 flex-1 flex-center">
<div className="max-w-[520px] w-full bg-white rounded-xl shadow">
<Login />
</div>
</div>
</CloudyFlow>
);
};
export default AuthPage;