From 3d471fb2a7db41138191ea66059c26bfd0305706 Mon Sep 17 00:00:00 2001 From: Erica Birdsong <97683338+ermaria@users.noreply.github.com> Date: Wed, 28 Feb 2024 14:50:09 -0500 Subject: [PATCH] Delete page.tsx --- compass/app/page.tsx | 58 -------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 compass/app/page.tsx diff --git a/compass/app/page.tsx b/compass/app/page.tsx deleted file mode 100644 index 819622f..0000000 --- a/compass/app/page.tsx +++ /dev/null @@ -1,58 +0,0 @@ -// pages/index.tsx -'use client' -import Button from '@/components/Button'; -import Input from '@/components/Input' -import InlineLink from '@/components/InlineLink'; -import Paper from '@/components/auth/Paper'; -import { Metadata } from 'next' -import Image from 'next/image'; -import React, { useState } from 'react'; -import PasswordInput from '@/components/auth/PasswordInput'; - - -// export const metadata: Metadata = { -// title: 'Login', -// } - -export default function Page() { - const [visible, setVisible] = useState(false); - - return ( - <> - <Paper> - - <form className="mb-0 m-auto mt-6 space-y-4 rounded-lg p-4 shadow-lg sm:p-6 lg:p-8 bg-white max-w-xl"> - <Image - src="/logo.png" - alt='Compass Center logo.' - width={100} - height={91} - /> - <h1 className='font-bold text-xl text-purple-700'>Login</h1> - <div className="mb-4"> - <Input type='email' title="Email" iconKey={'EmailInputIcon'} required /> - </div> - <div className="mb-6"> - - <PasswordInput type='password' title="Password" required /> - - - </div> - <div className="flex flex-col items-left space-y-4"> - <InlineLink href="/reset-password"> - Forgot password? - </InlineLink> - <Button> - Login - </Button> - - </div> - </form> - <p className="text-center mt-6 text-gray-500 text-xs"> - © 2024 Compass Center - </p> - </Paper> - </> - ); -}; -