aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.jsx
blob: 31391ad7b4fbc758b67a68893cc207c35e956740 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Image from "next/image";
import styles from "./page.module.css";
import Footer from "./components/footer/page";

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>
			<Footer />
		</main>
	);
}