aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/page.jsx
blob: ff1731dd39c473a523717c8b6de9bd5cc70ce013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import styles from "./manga.module.css";
import Image from "next/image";
import SearchBar from "./searchBar";

export default async function Manga() {
	return (
		<div className={styles.Main}>
			<Image
				src="/manga.png"
				width={480}
				height={200}
				className={styles.MangaImage}
				alt="Manga Intro Image"
				priority
			/>
			<SearchBar />
		</div>
	);
}