This commit is contained in:
Michael Rausch 2025-01-16 01:23:09 +13:00
parent 589553883a
commit d35c906e50
4 changed files with 35 additions and 21 deletions

View File

@ -1,7 +1,7 @@
---
import Container from "@components/Container.astro";
import Link from "@components/Link.astro";
import { SITE } from "@consts";
import { SITE, SOCIALS } from "@consts";
---
<header>
@ -31,9 +31,9 @@ import { SITE } from "@consts";
<span>
{`/`}
</span>
<!-- <Link href="/lab">
lab
</Link> -->
<Link href={SOCIALS.find(social => social.NAME === "cv")?.HREF || ""} external={true}>
cv
</Link>
</nav>
</div>
</Container>

View File

@ -36,5 +36,9 @@ export const SOCIALS: Socials = [
{
NAME: "linkedin",
HREF: "https://www.linkedin.com/in/michael-rausch-13445b8a/",
},
{
NAME: "cv",
HREF: "https://standardresume.co/r/sQUNyo7W9NsmFFG8ZvU_B",
}
];

View File

@ -0,0 +1,7 @@
---
company: "Standard"
role: "Software Engineer / Director"
dateStart: "01/01/2019"
dateEnd: "Mothballed"
---

View File

@ -50,23 +50,26 @@ const work = await Promise.all(
</article>
</section>
<section class="animate space-y-6">
<div class="flex flex-wrap gap-y-2 items-center justify-between">
<h5 class="font-semibold text-black dark:text-white">
Latest posts
</h5>
<Link href="/blog">
See all posts
</Link>
</div>
<ul class="flex flex-col gap-4">
{blog.map(post => (
<li>
<ArrowCard entry={post} />
</li>
))}
</ul>
</section>
{ blog.length > 1 &&
<section class="animate space-y-6">
<div class="flex flex-wrap gap-y-2 items-center justify-between">
<h5 class="font-semibold text-black dark:text-white">
Latest posts
</h5>
<Link href="/blog">
See all posts
</Link>
</div>
<ul class="flex flex-col gap-4">
{blog.map(post => (
<li>
<ArrowCard entry={post} />
</li>
))}
</ul>
</section>
}
<section class="animate space-y-6">
<div class="flex flex-wrap gap-y-2 items-center justify-between">