mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
15 lines
304 B
Svelte
15 lines
304 B
Svelte
<script>
|
|
import Article from '$lib/components/article/index.svelte';
|
|
import Body from './article.svx';
|
|
import image from './assets/cover.png?as=run';
|
|
</script>
|
|
|
|
<Article title="How to hire engineers, by an engineer" color="#8bae8c" {image}>
|
|
<Body />
|
|
</Article>
|
|
|
|
<style>
|
|
:global(:root) {
|
|
}
|
|
</style>
|