aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.js
blob: f8750b9168f3bb6fd37e0f827d0fab7912dd58df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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}
					alt="Logo"
				>
				</Image>
				<p>
					Welcome to dramalama. An online service where you can watch kdramas and anime for free.
				</p>	
			</div>
		</main>
	);
}