mirror of
https://github.com/michaelrausch/michaelrausch-24.git
synced 2025-01-31 05:29:56 +00:00
Added CV
This commit is contained in:
parent
589553883a
commit
d35c906e50
@ -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>
|
||||||
|
@ -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",
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
7
src/content/work/Standard.md
Normal file
7
src/content/work/Standard.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
company: "Standard"
|
||||||
|
role: "Software Engineer / Director"
|
||||||
|
dateStart: "01/01/2019"
|
||||||
|
dateEnd: "Mothballed"
|
||||||
|
---
|
||||||
|
|
@ -50,6 +50,7 @@ const work = await Promise.all(
|
|||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
{ blog.length > 1 &&
|
||||||
<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">
|
||||||
<h5 class="font-semibold text-black dark:text-white">
|
<h5 class="font-semibold text-black dark:text-white">
|
||||||
@ -67,6 +68,8 @@ const work = await Promise.all(
|
|||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</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">
|
||||||
|
Loading…
Reference in New Issue
Block a user