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 ( - <> - - -
- Compass Center logo. -

Login

-
- -
-
- - - - -
-
- - Forgot password? - - - -
-
-

- © 2024 Compass Center -

-
- - ); -}; -