Skip to content

Commit

Permalink
set landing page to /login
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Feb 12, 2024
1 parent 2553e45 commit 3e611f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ import { useRouter } from 'next/navigation';
export default function HomePage() {
const router = useRouter();

/* useEffect(() => {
useEffect(() => {
router.push('/login');
}, []);
*/

return (
<main>
<Head>
Expand Down Expand Up @@ -148,15 +148,15 @@ export default function HomePage() {
content='minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, user-scalable=no, viewport-fit=cover'
/>
</Head>
<section className='h-screen w-screen bg-slate-900 text-white'>
{/* <section className='h-screen w-screen bg-slate-900 text-white'>
<Link
href={{
pathname: '/home',
}}
>
Home
</Link>
</section>
</section> */}
</main>
);
}

0 comments on commit 3e611f1

Please sign in to comment.