mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
chore: update job title
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"personal": {
|
"personal": {
|
||||||
"name": "Stefan Imhoff",
|
"name": "Stefan Imhoff",
|
||||||
"tagline": "Senior Web UI Engineer"
|
"tagline": "Senior Web Developer"
|
||||||
},
|
},
|
||||||
"summary": {
|
"summary": {
|
||||||
"headline": "Professional Summary"
|
"headline": "Professional Summary"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
export const site = {
|
export const site = {
|
||||||
title: 'Stefan Imhoff',
|
title: 'Stefan Imhoff',
|
||||||
description: 'Web UI Engineer from Hamburg, Germany',
|
description: 'Web Developer from Hamburg, Germany',
|
||||||
url: 'https://www.stefanimhoff.de',
|
url: 'https://www.stefanimhoff.de',
|
||||||
author: 'Stefan Imhoff',
|
author: 'Stefan Imhoff',
|
||||||
tagline: '👨🏻💻 Web UI Engineer • ⬜️ Minimalist • 🏛️ Stoic • 🏴 Ancap • ⛩️ Japanophile',
|
tagline: '👨🏻💻 Web Developer • ⬜️ Minimalist • 🏛️ Stoic • 🏴 Ancap • ⛩️ Japanophile',
|
||||||
faviconPath: '/assets/images/branding/favicons/',
|
faviconPath: '/assets/images/branding/favicons/',
|
||||||
x: '@kogakure',
|
x: '@kogakure',
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
layout: ../layouts/AboutLayout.astro
|
layout: ../layouts/AboutLayout.astro
|
||||||
title: About
|
title: About
|
||||||
updated: 2025-01-23
|
updated: 2025-01-23
|
||||||
description: I’m Stefan Imhoff, a Web UI Engineer from Hamburg, Germany.
|
description: I’m Stefan Imhoff, a Web Developer from Hamburg, Germany.
|
||||||
backLink: /
|
backLink: /
|
||||||
---
|
---
|
||||||
|
|
||||||
import { mapping } from "../mdx-components.ts";
|
import { mapping } from "../mdx-components.ts";
|
||||||
export const components = mapping;
|
export const components = mapping;
|
||||||
|
|
||||||
I’m _Stefan Imhoff_, a Senior Web UI Engineer from Hamburg, Germany.
|
I’m _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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ const allPosts = await getCollection('journal', ({ data }: JournalType) => !data
|
|||||||
const formattedLatest = formatPosts(allPosts, { limit: 6 });
|
const formattedLatest = formatPosts(allPosts, { limit: 6 });
|
||||||
|
|
||||||
const title = 'Stefan Imhoff';
|
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');
|
const rssPosts = await Astro.glob('../content/journal/**/*.mdx');
|
||||||
rssPosts.sort(sortMarkdownByDate);
|
rssPosts.sort(sortMarkdownByDate);
|
||||||
|
|||||||
11
src/pages/rss-test.xml.js
Normal file
11
src/pages/rss-test.xml.js
Normal 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}')),
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
I’m a Web UI Engineer with more than two decades of experience in creating and building beautiful, user-centric layouts for devices of all sizes on the web. My passion is creating sophisticated, but easy to use UI and remarkable UX. I love bringing simplicity and minimalism to everything I create.
|
I’m a Web Developer with more than two decades of experience in creating and building beautiful, user-centric layouts for devices of all sizes on the web. My passion is creating sophisticated, but easy to use UI and remarkable UX. I love bringing simplicity and minimalism to everything I create.
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
I’m a Web UI Engineer from Hamburg, Germany. I love design and art, reading books, listening to podcasts, creating Sketchnotes, taking photos, and writing Haiku.
|
I’m a Web Developer from Hamburg, Germany. I love design and art, reading books, listening to podcasts, creating Sketchnotes, taking photos, and writing Haiku.
|
||||||
|
|||||||
Reference in New Issue
Block a user