mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
15 lines
298 B
Svelte
15 lines
298 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="A meta talk about Git strategies" color="ff9922" {image}>
|
|
<Body />
|
|
</Article>
|
|
|
|
<style>
|
|
:global(:root) {
|
|
}
|
|
</style>
|