From 534f4ffdafb2f9a7ba34792a4ca99bb932ecb200 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Sep 2025 12:49:35 +0000 Subject: [PATCH 1/3] Initial plan From 26f3f243e4213ba1bef520f934e36d6247d9be96 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Sep 2025 12:58:53 +0000 Subject: [PATCH 2/3] Add back navigation to article pages Co-authored-by: InDieTasten <7047377+InDieTasten@users.noreply.github.com> --- src/app/_components/post-header.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/app/_components/post-header.tsx b/src/app/_components/post-header.tsx index 48b7940..cb556da 100644 --- a/src/app/_components/post-header.tsx +++ b/src/app/_components/post-header.tsx @@ -2,6 +2,7 @@ import Avatar from "./avatar"; import DateFormatter from "./date-formatter"; import { PostTitle } from "@/app/_components/post-title"; import { type Author } from "@/interfaces/author"; +import Link from "next/link"; type Props = { title: string; @@ -13,6 +14,23 @@ type Props = { export function PostHeader({ title, date, author, tags }: Props) { return ( <> +