aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.jsx
blob: 109264dd03602d9e27d97b326d3c42fb49ede852 (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
24
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"
					priority
				></Image>
				<p>
					Hey there, welcome to Dramalama. We are excited to have you
					on board.
				</p>
			</div>
			<Footer />
		</main>
	);
}