mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 18:21:32 +10:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import Image from 'next/image';
|
|
import Link from 'next/link';
|
|
|
|
import backgroundPattern from '~/assets/background-pattern.png';
|
|
import connections from '~/assets/card-sharing-figure.png';
|
|
import { SignInForm } from '~/components/forms/signin';
|
|
|
|
export default function SignInPage() {
|
|
return (
|
|
<main className="bg-sand-100 relative flex min-h-screen flex-col items-center justify-center overflow-hidden px-4 py-12 md:p-12 lg:p-24">
|
|
<div className="relative flex max-w-4xl items-center gap-x-24">
|
|
<div className="absolute -inset-96 -z-[1] flex items-center justify-center opacity-50">
|
|
<Image src={backgroundPattern} alt="background pattern" />
|
|
</div>
|
|
|
|
<div className="max-w-md">
|
|
<h1 className="text-4xl font-semibold">Sign in to your account</h1>
|
|
|
|
<p className="mt-2 text-sm text-slate-500">Welcome back, we are lucky to have you.</p>
|
|
|
|
<SignInForm className="mt-4" />
|
|
|
|
<p className="mt-6 text-center text-sm text-slate-500">
|
|
Don't have an account?{' '}
|
|
<Link href="/signup" className="text-primary duration-200 hover:opacity-70">
|
|
Sign up
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="hidden flex-1 lg:block">
|
|
<Image src={connections} alt="documenso connections" />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|