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 SVG" priority /> <SearchBar /> </div> ); }