Compare commits

..

3 Commits

Author SHA1 Message Date
efcceaade1 fix: fixed styling bug (prettier problem)
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m17s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 13:37:02 +01:00
32db6a4cf4 feat: updated ressources
Some checks failed
Gitea Actions Demo / Upload (push) Has been cancelled
Gitea Actions Demo / Build (push) Has been cancelled
2025-10-26 13:35:45 +01:00
8004e2a8ef feat: added og to start page 2025-10-26 13:35:28 +01:00
4 changed files with 6 additions and 5 deletions

Binary file not shown.

View File

@@ -4,19 +4,21 @@
let { data } = $props();
let blogs = data.blogs as BlogEntry[];
let desc =
"This is a collection of things I've set up and created that I think might interest others.";
</script>
<svelte:head>
<title>Home - Amys Blog</title>
<meta property="og:title" content="Home - Amys Blog" />
<meta property="og:description" content={desc} />
<meta property="og:image" content="https://madeio.net/blog-covers/flame.jpg" />
</svelte:head>
<main>
<div class="media-margin">
<h1>Hi, I'm Amy</h1>
<p>
This is a collection of things I've set up and created that I think might interest others.
</p>
<p>{desc}</p>
</div>
{#each blogs as blog (blog.src)}
<a href={blog.src} target={blog.src_target} class="blog-entry">

View File

@@ -27,8 +27,7 @@
<main>
<div class="title media-margin">
<!-- prettier-ignore -->
<h1>{title}</h1>
<p class="date">Last updated {ddate}</p>
<h1>{title}</h1><p class="date">Last updated {ddate}</p>
</div>
<div class="blog-text media-margin">
<p>{desc}</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 68 KiB