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

// This is the landing page for the manga section. Nothing much here but my only complaint is the loading time for the svg. It's too big but idk how to fix it. I mean I could use a png but then the quality is not good. Will keep it like this for the time being

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