chore: update job title

This commit is contained in:
Stefan Imhoff
2025-07-19 16:47:34 +02:00
parent 50ec539b3c
commit aae33d65ab
7 changed files with 19 additions and 8 deletions

View File

@@ -2,14 +2,14 @@
layout: ../layouts/AboutLayout.astro
title: About
updated: 2025-01-23
description: Im Stefan Imhoff, a Web UI Engineer from Hamburg, Germany.
description: Im Stefan Imhoff, a Web Developer from Hamburg, Germany.
backLink: /
---
import { mapping } from "../mdx-components.ts";
export const components = mapping;
Im _Stefan Imhoff_, a Senior Web UI Engineer from Hamburg, Germany.
Im _Stefan Imhoff_, a Senior Web Developer from Hamburg, Germany.
I find inspiration in a wide variety of media, from reading challenging and heterodox [books](https://goodreads.com/kogakure) about philosophy, science, and economics to listening to [podcasts](https://raindrop.io/kogakure/podcasts-24118384), watching [TV shows](https://www.themoviedb.org/u/kogakure/favorites/tv) and [movies](https://www.themoviedb.org/u/kogakure/favorites), and indulging in [Korean](https://www.themoviedb.org/list/8216385-korea?view=grid) and [Japanese](https://www.themoviedb.org/list/106001-japan?view=grid) dramas on Netflix.

View File

@@ -34,7 +34,7 @@ const allPosts = await getCollection('journal', ({ data }: JournalType) => !data
const formattedLatest = formatPosts(allPosts, { limit: 6 });
const title = 'Stefan Imhoff';
const description = 'Web UI Engineer from Hamburg, Germany';
const description = 'Web Developer from Hamburg, Germany';
const rssPosts = await Astro.glob('../content/journal/**/*.mdx');
rssPosts.sort(sortMarkdownByDate);

11
src/pages/rss-test.xml.js Normal file
View File

@@ -0,0 +1,11 @@
import rss, { pagesGlobToRssItems } from '@astrojs/rss';
export async function get(context) {
return rss({
title: 'Your Blog Title',
description: 'Your blog description',
site: context.site,
// This glob includes both Markdown (.md) and MDX (.mdx) files
items: await pagesGlobToRssItems(import.meta.glob('../content/journal/2025/*.{md,mdx}')),
});
}