feat: add signup button and page
This commit is contained in:
@@ -5,8 +5,6 @@ import { SigninForm } from './_components/signin-form';
|
|||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'IMPHNEN - Signin',
|
title: 'IMPHNEN - Signin',
|
||||||
description:
|
|
||||||
'Komunitas Ingin Menjadi Programmer Handal Namung Enggan Ngonding',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
import { Metadata } from 'next';
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'IMPHNEN - Signin',
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function Page() {
|
||||||
|
return <></>;
|
||||||
|
}
|
||||||
@@ -62,7 +62,14 @@ export function Header() {
|
|||||||
onClick={() => router.push('/signin')}
|
onClick={() => router.push('/signin')}
|
||||||
className="hidden md:flex"
|
className="hidden md:flex"
|
||||||
>
|
>
|
||||||
Login
|
Masuk
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="secondary"
|
||||||
|
onClick={() => router.push('/signup')}
|
||||||
|
className="hidden md:flex"
|
||||||
|
>
|
||||||
|
Daftar
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
{/* Mobile Menu Button */}
|
{/* Mobile Menu Button */}
|
||||||
|
|||||||
Reference in New Issue
Block a user