blob: 0ef6468e2e95ffb5b3700ee09e9950f6f7a8a853 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import Image from "next/image";
import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
<div className={styles.welcomeContainer}>
<Image
src="/logo.png"
width={300}
height={300}
>
</Image>
<p>
Welcome to dramalama. An online service where you can watch kdramas and anime for free.
</p>
</div>
</main>
);
}
|