diff --git a/compass/app/page.tsx b/compass/app/page.tsx index 8d32287..bf62ac2 100644 --- a/compass/app/page.tsx +++ b/compass/app/page.tsx @@ -1,20 +1,24 @@ // 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'; -export const metadata: Metadata = { - title: 'Login', -} + +//export const metadata: Metadata = { +// title: 'Login', +//} export default function Page() { + const [visible, setVisible] = useState(false); return ( - <> + <> +
-

Login

+

Login

- +
- + +
- + Forgot password?