diff options
| author | real-zephex <[email protected]> | 2024-06-07 09:55:23 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-06-07 09:55:23 +0530 |
| commit | bdd48555bf59552864d5a59a3ee43291e4136b47 (patch) | |
| tree | dc3ab66ac60fe715b79c17843f9e87646aaae93a /src/app/manga/page.jsx | |
| parent | Delete src/app/globals.module.css (diff) | |
| download | dramalama-bdd48555bf59552864d5a59a3ee43291e4136b47.tar.xz dramalama-bdd48555bf59552864d5a59a3ee43291e4136b47.zip | |
🚀 feat(ui): added manga with better UI
Diffstat (limited to 'src/app/manga/page.jsx')
| -rw-r--r-- | src/app/manga/page.jsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/app/manga/page.jsx b/src/app/manga/page.jsx new file mode 100644 index 0000000..6992fa7 --- /dev/null +++ b/src/app/manga/page.jsx @@ -0,0 +1,21 @@ +import MangaSearchBox from "./components/inputContainer"; + +const MangaHomePage = async () => { + return ( + <main className="flex h-[90dvh] w-full flex-col items-center"> + <div className="mt-2"> + <p className="text-center text-xl"> + Welcome to <br /> + <span className="text-3xl text-sky-400"> + Dramalama-Manga + </span> + </p> + </div> + <div className="mt-2 w-full lg:w-1/3"> + <MangaSearchBox /> + </div> + </main> + ); +}; + +export default MangaHomePage; |