fixed font link for subpages; reduced width of devlog posts; reduced height of banner; removed old banner

This commit is contained in:
2025-12-30 19:03:57 +00:00
parent 3e90dbdc80
commit b8ed25ae65
10 changed files with 220 additions and 119 deletions

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import BannerTitle from "$lib/banner-title.svelte";
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
import TableOfContents from "$lib/table-of-contents.svelte";
</script>
@@ -8,12 +8,12 @@
<title>Daisy FM Synth | denizk0461</title>
</svelte:head>
<Content>
<BannerTitle
title="Daisy FM Synth"
banner="/projects/daisyfm/banner.webp"
bannerAlt="Close-up of Daisy, focussed on the effect knobs"/>
<BannerTitleAlt
title="Daisy FM Synth"
banner="/projects/daisyfm/banner.webp"
bannerAlt="Close-up of Daisy, focussed on the effect knobs"/>
<Content>
<img src="/projects/daisyfm/fullview.webp" alt="Top view of the Daisy FM synth">
<p>A friend showed me the <a href="https://electro-smith.com/products/daisy-seed">Daisy Seed</a>, an Arduino-compatible microcontroller made for developing audio equipment. With a little bit of motivation and absolutely no experience in either programming synthesisers or electronics in general, I quickly got my hands on one and started to toy around.</p>

View File

@@ -1,6 +1,6 @@
<script>
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import ContentSidebar from "$lib/content-sidebar.svelte";
import Content from "$lib/content.svelte";
import TableOfContents from "$lib/table-of-contents.svelte";
export let data;
@@ -19,12 +19,12 @@
bannerAlt="{data.bannerAlt}"
/>
<ContentSidebar>
<Content useContentWidth>
<TableOfContents slot="side-left" />
<TableOfContents disableStickyScrolling />
<div slot="main">
<svelte:component this={data.content} />
</div>
<!-- <div slot="main"> -->
<svelte:component this={data.content} />
<!-- </div> -->
</ContentSidebar>
</Content>