Migrate all routes

This commit is contained in:
aronmal 2023-11-09 14:55:27 +01:00
parent 036a2d1e4a
commit ea5a815c2c
Signed by: aronmal
GPG key ID: 816B7707426FC612
13 changed files with 621 additions and 480 deletions

View file

@ -1,18 +1,50 @@
//import Image from "@/app/test/page";
import styles from "./home.module.css";
---
import Layout from "@layouts/Layout.astro";
---
export default function Home() {
return (
<>
<section className={styles.section}>
<h1>li'l Judd</h1>
<h5>The competetive Splatoon Bot</h5>
<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>
</section>
</>
)
}
<Layout>
<section class="section">
<h1>li'l Judd</h1>
<h5>The competetive Splatoon Bot</h5>
<div>
<p class="p1">Improve your competitive Splatoon experience!</p>
<p class="p2">
See what li'l Judd can help you with: <a href="/features">here</a>
</p>
</div>
</section>
</Layout>
<style>
.section {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.section h1 {
font-size: 4rem;
margin-top: 8rem;
}
.section h5 {
font-size: 1.5rem;
margin-top: 0.25rem;
}
.section div {
margin-top: 1.5rem;
}
.p1 {
font-size: 1rem;
}
.p2 {
font-size: 0.8rem;
}
.p2 a {
font-weight: bolder;
}
</style>