blob: 902580450f02175723d3b30e2daafbef9181f879 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import MangaSearchBox from "./components/inputContainer";
export const metadata = {
title: "Dramalama Manga",
description: "Manga/Manhwa page for Dramalama",
};
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;
|