Skip to content

Commit

Permalink
feat(auth): add login page component
Browse files Browse the repository at this point in the history
  • Loading branch information
Callenowy committed Jan 24, 2024
1 parent ba67653 commit 492ceef
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/app/auth/login/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Metadata } from 'next';
import { LoginLayout } from '@/layouts/login';
import { LoginCard } from '@/components/loginCard';

export const metadata: Metadata = {
title: 'Login',
description: 'Login to your account on the Stack App',
};

export default function LoginPage() {
return (
<LoginLayout>
<LoginCard>Login Soon!</LoginCard>
</LoginLayout>
);
}

0 comments on commit 492ceef

Please sign in to comment.