moved CSS rules so that link lists and ul look identical; adjusted header

This commit is contained in:
2026-01-21 17:42:59 +01:00
parent 01feb485bf
commit df73da9ae2
14 changed files with 271 additions and 302 deletions

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/content.svelte";
// import type { DevlogPost } from "./devlog-posts";
import { posts, type DevlogPost } from "./posts";
@@ -19,13 +19,11 @@
<title>Project N5 Devlog | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Project N5; Development Log"
banner="/projects/projectn5/banner2.webp"
wide
/>
<Content>
<Banner2
title="Project N5; Development Log"
banner="/projects/projectn5/banner2.webp" />
<p>This is the development log for my game <strong>Project N5</strong>! It's an action-adventure jump-and-run game inspired by games such as Ratchet & Clank. Development started on <b>2023-09-16</b> and rebooted on <b>2025-05-16</b>.</p>
<p>2023 progress updates summarise an entire month's work, respectively. Progress updates thereafter denote noteworthy developments in a more collected format.</p>

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import LinkList, { type LinkEntry } from "$lib/link-list.svelte";
import List, { type ListEntry } from "$lib/link-list.svelte";
let builds: LinkEntry[] = [
let builds: ListEntry[] = [
{
text: "2023-10-07 (Protagonist #1)",
link: "https://files.denizk0461.dev/projectn5/2023-10-07.zip",
@@ -37,7 +37,7 @@ The game, in its state from 2025-05-16 (before the reboot), is available to play
I've also uploaded old builds of the game [here](https://files.denizk0461.dev/projectn5). You'll find the following builds, one for each protagonist:
<LinkList entries={builds} />
<List entries={builds} />
The 2025-08-16 build has not seen work put into it after [2025-05-16](/projects/projectn5/devlog/2025/0523/), bar the build notice on the pause screen.

View File

@@ -21,10 +21,8 @@
bannerAlt="{data.bannerAlt}"
/>
<TableOfContents disableStickyScrolling />
<TableOfContents />
<!-- <div slot="main"> -->
<svelte:component this={data.content} />
<!-- </div> -->
</Content>