Finished my latest blog post also updated dependencies.

This commit is contained in:
Toastie 2024-12-28 00:43:50 +13:00
parent b05a431319
commit aa53095771
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
4 changed files with 699 additions and 45 deletions

View file

@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.0.5"
"astro": "^5.1.1"
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,22 @@
---
author: Toastie
publishDate: 2024-12-18
title: Starting fresh
description: A small update on my life.
tags:
- life-update
---
Hi there it has been a while,
I have been quite busy in my day to day life with education as well as my work on both the Dragon's child studios and EllieBot projects as well as updating this website to look a little bit nicer.
This year has been a crazy one with the release of EllieBot v5 as well as other EllieBot related stuff including the EllieHub updater/launcher, other things I have been working on is Valkyriecoms, Toastielab as well as the other projects located in the projects tab on this site.
Over the next year I plan to continue making things I like and enjoy making and using so please keep an eye out on the projects tab to see what I post there next.
Thanks for letting me ramble and thank you for an amazing 2024.
See you in 2025 with whatever happens then.
Toastie.

View file

@ -8,7 +8,6 @@ import BaseLayout from '../layouts/BaseLayout.astro';
import CallToAction from '../components/CallToAction.astro';
import Grid from '../components/Grid.astro';
import Hero from '../components/Hero.astro';
import BlogPreview from '../components/BlogPreview.astro';
import Icon from '../components/Icon.astro';
import Pill from '../components/Pill.astro';
import PortfolioPreview from '../components/PortfolioPreview.astro';
@ -74,32 +73,6 @@ const blog = (await getCollection('blog'))
</CallToAction>
</div>
</section>
<section class="section with-background with-cta">
<header class="section-header stack gap-2 lg:gap-4">
<h3>Blog posts</h3>
<p>Take a look below for my most recent blog posts.</p>
</header>
<div class="gallery">
<Grid variant="offset">
{
blog.map((blog) => (
<li>
<BlogPreview blog={blog} />
</li>
))
}
</Grid>
</div>
<div class="cta">
<CallToAction href="/blog/">
View All
<Icon icon="arrow-right" size="1.2em" />
</CallToAction>
</div>
</section>
</main>
<ContactCTA />