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

View File

@ -36,5 +36,9 @@ export const SOCIALS: Socials = [
{ {
NAME: "linkedin", NAME: "linkedin",
HREF: "https://www.linkedin.com/in/michael-rausch-13445b8a/", 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> </article>
</section> </section>
<section class="animate space-y-6"> { blog.length > 1 &&
<div class="flex flex-wrap gap-y-2 items-center justify-between"> <section class="animate space-y-6">
<h5 class="font-semibold text-black dark:text-white"> <div class="flex flex-wrap gap-y-2 items-center justify-between">
Latest posts <h5 class="font-semibold text-black dark:text-white">
</h5> Latest posts
<Link href="/blog"> </h5>
See all posts <Link href="/blog">
</Link> See all posts
</div> </Link>
<ul class="flex flex-col gap-4"> </div>
{blog.map(post => ( <ul class="flex flex-col gap-4">
<li> {blog.map(post => (
<ArrowCard entry={post} /> <li>
</li> <ArrowCard entry={post} />
))} </li>
</ul> ))}
</section> </ul>
</section>
}
<section class="animate space-y-6"> <section class="animate space-y-6">
<div class="flex flex-wrap gap-y-2 items-center justify-between"> <div class="flex flex-wrap gap-y-2 items-center justify-between">