generated from vst/haskell-template-hebele
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(website): add report to its own page, make room for landing page
- Loading branch information
Showing
4 changed files
with
57 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
import { AppMain } from '@/components/app'; | ||
import Header from '@/components/header'; | ||
import { ToastContainer } from 'react-toastify'; | ||
import Link from 'next/link'; | ||
|
||
import 'react-toastify/dist/ReactToastify.css'; | ||
|
||
export default function Home() { | ||
export default function Page() { | ||
return ( | ||
<main className="flex min-h-screen flex-col items-center justify-start"> | ||
<Header /> | ||
|
||
<div className="flex w-full flex-grow"> | ||
<AppMain /> | ||
<div className="flex w-full flex-col items-center justify-center"> | ||
<div> | ||
<p>Landing page is coming soon...</p> | ||
<p> | ||
Check{' '} | ||
<Link href="/report" className="font-bold text-blue-500"> | ||
report | ||
</Link>{' '} | ||
page. | ||
</p> | ||
</div> | ||
|
||
<ToastContainer autoClose={2000} /> | ||
</main> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { AppMain } from '@/components/app'; | ||
|
||
export default function Page() { | ||
return <AppMain />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters