chore: merged main

This commit is contained in:
Catalin Pit
2024-01-29 10:14:56 +02:00
27 changed files with 112 additions and 15 deletions

View File

@ -1,3 +1,4 @@
import type { Metadata } from 'next';
import Link from 'next/link';
import { env } from 'next-runtime-env';
@ -6,6 +7,10 @@ import { IS_GOOGLE_SSO_ENABLED } from '@documenso/lib/constants/auth';
import { SignInForm } from '~/components/forms/signin';
export const metadata: Metadata = {
title: 'Sign In',
};
export default function SignInPage() {
const NEXT_PUBLIC_DISABLE_SIGNUP = env('NEXT_PUBLIC_DISABLE_SIGNUP');