2023-10-18 15:58:15 +00:00
|
|
|
//import Image from "@/app/test/page";
|
2023-10-22 22:17:15 +00:00
|
|
|
import styles from "./home.module.css";
|
2023-10-18 15:58:15 +00:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
2023-10-22 22:17:15 +00:00
|
|
|
<section className={styles.section}>
|
2023-10-18 15:58:15 +00:00
|
|
|
<h1>li'l Judd</h1>
|
|
|
|
<h5>The competetive Splatoon Bot</h5>
|
2023-11-09 11:44:18 +00:00
|
|
|
<div>
|
|
|
|
<p className={styles.p1}>Improve your competitive Splatoon experience!</p>
|
|
|
|
<p className={styles.p2}>See what li'l Judd can help you with: <a href={"/features"}>here</a></p>
|
|
|
|
</div>
|
2023-10-18 15:58:15 +00:00
|
|
|
</section>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|