<script>
import { onMount } from 'svelte'
const steps = [
{
type: 'command',
command: "blog init example"
},
{
type: 'command',
command: "cd example"
},
{
type: 'command',
command: 'echo "# First Post" > posts/first-post.md'
},
{
type: 'wait',
delay: 1000
},
{
type: 'command',
command: 'git add .'
},
{
type: 'command',
command: "git commit -m 'Added first post'"
},
{
type: 'command',
command: "git push origin blog",
output: `Enumerating objects: 40, done.
Counting objects: 100% (40/40), done.
Compressing objects: 100% (15/15), done.
Writing objects: 100% (40/40), 3.30 KiB | 1.65 MiB/s, done.
Total 40 (delta 3), reused 18 (delta 1), pack-reused 0`