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 ( <> +
+ + + + + Back to Articles + +
{title} {tags && tags.length > 0 && (
From 9997e0c0e44ce00def2e7cbb45ef4bdf58c78950 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Sep 2025 13:11:49 +0000 Subject: [PATCH 3/3] Change back navigation text from "Back to Articles" to "Back" Co-authored-by: InDieTasten <7047377+InDieTasten@users.noreply.github.com> --- src/app/_components/post-header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/_components/post-header.tsx b/src/app/_components/post-header.tsx index cb556da..6c753d3 100644 --- a/src/app/_components/post-header.tsx +++ b/src/app/_components/post-header.tsx @@ -28,7 +28,7 @@ export function PostHeader({ title, date, author, tags }: Props) { > - Back to Articles + Back
{title}