Changed Home page

This commit is contained in:
J-onasJones 2024-06-16 20:07:53 +02:00
parent 59076f208a
commit 8512e24c8d

View file

@ -1,3 +1,20 @@
<script lang="ts">
import PostList from "../components/PostList.svelte";
export let searchquery: string = "";
</script>
<div> <div>
<h1>Welcome to my Blog!</h1> <h1>--- Latest Blog Posts ---</h1>
</div> </div>
<PostList query={searchquery} />
<style>
h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 2em;
margin-top: 50px;
text-align: center;
}
</style>