mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-26 11:22:04 +02:00
Migrate all routes
This commit is contained in:
parent
036a2d1e4a
commit
ea5a815c2c
13 changed files with 621 additions and 480 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue