ccdp10003-project01/app/page.tsx
2023-04-18 01:38:15 +10:00

16 lines
380 B
TypeScript

import styles from './page.module.css'
export default function Home() {
return (
<main className={styles.main}>
<div className={styles.begin}>
<h2>Click to begin</h2>
</div>
<div className={styles.description}>
<p>The Myrtle Tree - A game about sound and reliving memories.</p>
<p>By Rory Healy</p>
</div>
</main>
)
}