Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: Explain other types of applets

+26 -2
+25 -1
src/pages/index.astro
··· 1 1 --- 2 2 import Page from "../layouts/page.astro"; 3 3 4 - import "@picocss/pico/css/pico.colors.css"; 4 + // import "@picocss/pico/css/pico.colors.css"; 5 5 import "../styles/reset.css"; 6 6 import "../styles/fonts.css"; 7 7 import "../styles/pages/index.css"; ··· 64 64 )) 65 65 } 66 66 </ul> 67 + 68 + <h3>Data storage</h3> 69 + 70 + <p> 71 + <em 72 + >Applets that manage input and output of the system. Where input is audio files or 73 + streams, and output is derived data such as a music playlist.</em 74 + > 75 + </p> 76 + 77 + <h3>Data processing</h3> 78 + 79 + <p> 80 + <em 81 + >These applets interact with the bytes provided by the data storage, or provide to. This 82 + processed data can then be passed to the UI layer and engine applets.</em 83 + > 84 + </p> 85 + 86 + <h3>Additional</h3> 87 + 88 + <p> 89 + <em>Supplemental applets, such as scrobblers.</em> 90 + </p> 67 91 </section> 68 92 </main> 69 93 </Page>
+1 -1
src/styles/pages/index.css
··· 65 65 h3 { 66 66 font-size: var(--fs-lg); 67 67 font-weight: 800; 68 - margin: var(--space-sm) 0 var(--space-sm); 68 + margin: var(--space-lg) 0 var(--space-sm); 69 69 text-transform: uppercase; 70 70 } 71 71