2025-03-31 23:07:29 +02:00
< script lang = "ts" >
2026-01-23 14:19:20 +01:00
import Content from "$lib/viewport/content.svelte";
2025-04-03 17:31:24 +02:00
import GamedevWebring from "$lib/webrings/gamedev.svelte";
2026-01-21 22:08:09 +01:00
import Gallery, { type GalleryEntry } from "$lib/lists/gallery.svelte";
2026-02-03 22:22:53 +01:00
import GalleryRow, { type GalleryRowEntry } from "$lib/lists/gallery-row.svelte";
2025-04-03 10:15:04 +02:00
2026-01-29 19:27:42 +01:00
import { posts as devlogPosts } from "./projects/projectn5/devlog/posts";
import { posts as blogPosts } from "./blog/posts";
2026-02-02 21:30:21 +01:00
import { entries as changelogEntries } from "./changelog/changelog";
import ChangelogEntry from "$lib/components/changelog-entry.svelte";
2025-07-14 12:12:30 +02:00
2026-01-31 16:45:01 +01:00
let latestDevlogDate = devlogPosts[0].post.date;
let latestBlogDate = blogPosts[0].post.date;
2026-01-05 11:20:34 +00:00
2026-02-02 20:09:18 +01:00
let changelogEntriesTrimmed = changelogEntries.slice(0, 4);
2026-02-03 22:22:53 +01:00
const galleryTopRow: GalleryRowEntry[] = [
2026-01-05 11:20:34 +00:00
{
title: "Project N5 – devlog",
2026-02-03 22:22:53 +01:00
description: `My active Godot game project about finding yourself in an unfamiliar future. < i > latest update: ${ latestDevlogDate } </ i > `,
2026-01-05 11:20:34 +00:00
img: "projects/projectn5/devlog/2025/0523/birds_eye.webp",
2026-02-03 22:22:53 +01:00
altText: "Project N5 screenshot of Laura looking down at two cuboids.",
2026-01-23 15:46:08 +01:00
link: "projects/projectn5",
2026-01-05 11:20:34 +00:00
},
2026-01-29 19:27:42 +01:00
{
title: "Blog",
2026-02-03 22:22:53 +01:00
description: `A place where I write about random things. < i > latest post: ${ latestBlogDate } </ i > `,
2026-01-29 19:27:42 +01:00
img: "blog/robert.webp",
2026-02-03 22:22:53 +01:00
altText: "View at a tram bridge rising and then curving to the left.",
2026-01-29 19:27:42 +01:00
link: "blog",
},
2026-02-03 22:50:42 +01:00
];
const galleryBottomRow: GalleryRowEntry[] = [
{
title: "Projects",
description: "An overview of what I do and have done",
img: "main/3ds.webp",
altText: "An upside-down New 3DS XL lying open on a desk. A small USB-C breakout board is attached to the 3DS, and a USB-C cable is plugged in. The 3DS is glowing to indicate that it is charging.",
link: "projects",
},
2026-01-05 11:20:34 +00:00
{
title: "Files",
2026-02-03 22:22:53 +01:00
description: "Find things I've put for download on my Copyparty instance",
img: "main/hypertext.webp",
altText: "Screenshot of Hypertext Unity level. Crates are strewn across the floor, Waluigi is flying in front of the camera, and text such as 'COME AND TRY OUR ALL-NEW BLENDER' and 'omg! it's the brandenburg er tor!' is displayed.",
2026-01-05 11:20:34 +00:00
link: "//files.denizk0461.dev/",
},
2026-02-03 22:22:53 +01:00
{
title: "Gitea",
description: "I now also self-host a Gitea instance where I am likely migrating all my projects to",
img: "main/magic.webp",
altText: "A 'magic' command written in Java. The command shuts down the computer when ran.",
link: "//code.denizk0461.dev/",
},
2026-01-05 11:20:34 +00:00
];
2025-03-31 23:07:29 +02:00
< / script >
2025-04-04 10:37:25 +02:00
< svelte:head >
< title > denizk0461's website< / title >
2025-12-30 19:03:57 +00:00
< meta name = "description" content = "I'm a developer posting about my gamedev, programming, electronics, and sometimes music projects!" >
2025-04-04 10:37:25 +02:00
< / svelte:head >
2025-04-18 11:30:21 +02:00
< Content >
< h1 class = "gradient-title" > < i > Moin!< / i > ~ welcome to my website :)< / h1 >
2025-04-03 10:15:04 +02:00
2026-01-21 20:33:40 +01:00
< hr >
2026-01-21 15:21:21 +01:00
2026-02-02 19:16:58 +01:00
< div >
< img class = "me-img pixelated-img" src = "me.webp" alt = "Pixelated mirror selfie of the website creator wearing a green shirt, fitting the website theme. The face is obscured." title = "hi." >
< p > Hi! I'm Deniz (he/him/they). I'm a hobbyist programmer based in 🇩🇪 Northern Germany who does coding, 3D modelling, and sometimes music too. I am also studying to become a secondary school teacher. Welcome to my webpage!< / p >
< p > Here I publish my projects in programming, electronics (Arduino, Raspberry Pi etc.), and gamedev specifically, but I also set up a blog to talk about random things on my mind. Feel free to explore.< / p >
2026-02-02 21:30:21 +01:00
< p > This place is a constant work-in-progress – while I try to keep URLs intact, a lot of stuff is being modified and moved around! I'm also adding new things and seeing which things I enjoy maintaining. If anything's outright < a href = "/blog/2026/0131" > broken< / a > , please do let me know.< / p >
2026-02-02 19:16:58 +01:00
< / div >
2026-01-21 15:21:21 +01:00
2026-02-02 20:09:18 +01:00
< div class = "changelog-container" >
2026-02-02 21:30:21 +01:00
< a class = "changelog-header-link" href = "/changelog" > < h6 class = "changelog-header" > website changelog < span class = "small-supertext" > (new!)< / span > < / h6 > < / a >
2026-02-02 20:09:18 +01:00
{ #each changelogEntriesTrimmed as entry }
2026-02-02 21:30:21 +01:00
< ChangelogEntry { entry } />
2026-02-02 20:09:18 +01:00
{ /each }
< / div >
2026-02-02 19:16:58 +01:00
< div class = "webring-container" >
< GamedevWebring / >
< / div >
2026-01-21 15:21:21 +01:00
2026-02-03 22:22:53 +01:00
< GalleryRow entries = { galleryTopRow } / >
< GalleryRow entries = { galleryBottomRow } / >
2025-04-18 11:30:21 +02:00
< / Content >
2025-04-03 10:15:04 +02:00
< style >
.me-img {
2026-02-02 19:16:58 +01:00
width: 110px;
min-width: 110px;
float: left;
margin-right: 12px;
}
2026-02-02 20:09:18 +01:00
.changelog-container {
padding: 8px 24px;
border: 2px var(--color-highlight) dashed;
}
2026-02-02 21:30:21 +01:00
.changelog-header-link {
2026-02-02 20:09:18 +01:00
text-decoration: none;
}
2026-02-02 21:30:21 +01:00
.changelog-header-link:hover {
text-decoration: underline dashed 2px var(--color-highlight);
}
.changelog-header {
margin-top: 8px;
2026-02-02 20:59:10 +01:00
}
2026-02-02 19:16:58 +01:00
.webring-container {
display: flex;
flex-direction: row;
align-items: center;
2025-04-03 10:15:04 +02:00
}
2025-04-04 19:33:17 +02:00
.gradient-title {
2026-01-21 15:21:21 +01:00
background: linear-gradient(
90deg,
var(--color-highlight) 30%,
var(--color-highlight-alt) 90%
);
2025-04-04 19:33:17 +02:00
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
2025-08-15 20:30:20 +02:00
padding-bottom: 12px;
2025-04-04 19:33:17 +02:00
}
2025-04-03 10:15:04 +02:00
< / style >