removed updates page

This commit is contained in:
2026-04-14 08:22:31 +02:00
parent 8b3faec367
commit 238deb5756
5 changed files with 0 additions and 201 deletions

View File

@@ -4,8 +4,6 @@
import { posts as devlogPosts } from "./projects/projectn5/devlog/posts";
import { posts as blogPosts } from "./blog/posts";
import { entries as updateEntries } from "./meta/updates/updates";
import UpdateEntry from "$lib/components/update-entry.svelte";
import IndieButton from "$lib/components/indie-button.svelte";
import { buttons } from "$lib/components/indie-button";
import { onMount } from "svelte";
@@ -13,8 +11,6 @@
let latestDevlogDate = devlogPosts[0].post.date;
let latestBlogDate = blogPosts[0].post.date;
let updateEntriesTrimmed = updateEntries.slice(0, 5);
let latestStatusContent = $state("fetching status...");
let latestStatusTimestamp = $state("?");

View File

@@ -1,21 +0,0 @@
<script lang="ts">
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/viewport/content.svelte";
import { entries } from "./updates";
import ChangelogEntry from "$lib/components/update-entry.svelte";
</script>
<svelte:head>
<title>Website Updates | denizk0461</title>
</svelte:head>
<Content>
<Banner2
title="Website Updates" />
<div>
{#each entries as entry}
<ChangelogEntry {entry} />
{/each}
</div>
</Content>

View File

@@ -1,86 +0,0 @@
import { type UpdateEntry } from "$lib/components/update-entry.svelte";
export const entries: UpdateEntry[] = [
{
date: "2026-03-26",
time: "20:50",
content: "<b>Important</b>: my website is changing domains.",
link: "/blog/2026/0326",
},
{
date: "2026-03-25",
time: "22:22",
content: "I made a LIGHTYEARS font!",
link: "/blog/2026/0325",
},
{
date: "2026-03-17",
time: "17:10",
content: "a bit uncharacteristic, but I wrote a guide on setting up a SvelteKit app + backend because I found NOTHING of the sort online.",
link: "/blog/2026/0317",
},
{
date: "2026-03-11",
time: "19:21",
content: "new page: my drawings!",
link: "/art/drawings",
},
{
date: "2026-03-07",
time: "14:12",
content: "I fancied up some element animations, especially on the devlog and blog pages! The main page also got some love.",
},
{
date: "2026-03-05",
time: "23:59",
content: "My drawing challenge is complete I learned to draw!",
link: "/blog/2026/0205",
},
{
date: "2026-02-26",
time: "20:21",
content: "There's now a new Small Projects page where I gradually add some of my smaller projects.",
link: "/projects/small",
},
{
date: "2026-02-25",
time: "19:33",
content: "Added cool status markers to the projects page that show whether a project is currently active.",
link: "/projects",
},
{
date: "2026-02-21",
time: "16:25",
content: "My website is now also part of the no AI webring!",
link: "https://baccyflap.com/noai",
},
{
date: "2026-02-16",
time: "18:44",
content: "My website is now part of the bucket webring!",
link: "https://webring.bucketfish.me/",
},
{
date: "2026-02-06",
time: "18:47",
content: "Started a 28-day drawing challenge for myself! Updating the blog post every day with my new drawings.",
link: "/blog/2026/0205",
},
{
date: "2026-02-03",
time: "22:46",
content: "Created a new gallery widget for the main page and added a link to the new Gitea instance.",
},
{
date: "2026-02-03",
time: "15:48",
content: "Now running my own Gitea instance! It now also hosts my website repository.",
link: "https://code.natconf.dev/denizk0461/pages",
},
{
date: "2026-02-02",
time: "19:30",
content: "Updated some texts and moved my contact info to the about page. Also created this changelog!",
link: "/meta/about",
},
];