This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-admin/components/LoginPage/LoginPage.tsx
2022-08-29 21:09:28 +03:00

11 lines
183 B
TypeScript

import Link from 'next/link';
export const LoginPage = () => {
return (
<>
<h1>Log in</h1>
<Link href={'/api/login'}>Log in with Icy Network</Link>
</>
);
};