You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
767 B
Vue

<template>
<div class="intro">
<p>
Hello Worlding is a network of pathways to walk through different ways to read, write and think with code documentation.
</p>
<p>
Each pathway is a reader made of READMEs: a collection of text files that usually accompany software to provide insights and explanations about what's going on in the code. Each pathway focuses on a particular approach or method to highlight the potential of code documentation to create worlds around the making of software.
</p>
</div>
<Pathways :pathways="pathways"></Pathways>
</template>
<script setup>
import Pathways from '@/components/Pathways.vue'
import pathways from '@/assets/pathways.json'
</script>