diff --git a/src/app/blog/[[...tag]]/ActionButtons.tsx b/src/app/blog/[[...tag]]/ActionButtons.tsx
new file mode 100644
index 0000000..3f4d747
--- /dev/null
+++ b/src/app/blog/[[...tag]]/ActionButtons.tsx
@@ -0,0 +1,37 @@
+"use client";
+
+import { useRouter } from "next/navigation";
+
+export default function ActionButtons({ loggedIn }: { loggedIn: boolean }) {
+ const router = useRouter();
+ return loggedIn ? (
+
router.push("/blog/write")}
+ >
+ write a post
+
+ ) : (
+ router.push("/blog/login")}
+ >
+ login
+
+ );
+}
diff --git a/src/app/blog/[[...tag]]/PostSummary.tsx b/src/app/blog/[[...tag]]/PostSummary.tsx
index 66323fd..a341cd5 100644
--- a/src/app/blog/[[...tag]]/PostSummary.tsx
+++ b/src/app/blog/[[...tag]]/PostSummary.tsx
@@ -191,36 +191,6 @@ export default function PostSummary({
- {loggedIn ? (
- router.push("/blog/write")}
- >
- write a post
-
- ) : (
- router.push("/blog/login")}
- >
- login
-
- )}
>
);
}
diff --git a/src/app/blog/[[...tag]]/page.tsx b/src/app/blog/[[...tag]]/page.tsx
index 9663ceb..bf07807 100644
--- a/src/app/blog/[[...tag]]/page.tsx
+++ b/src/app/blog/[[...tag]]/page.tsx
@@ -8,6 +8,7 @@ import PostSummary from "./PostSummary";
import Pagination from "./Pagination";
import TagOverview from "./TagOverview";
import { isLoggedIn } from "@/components/auth";
+import ActionButtons from "./ActionButtons";
export default async function Blog({
params,
@@ -52,6 +53,7 @@ export default async function Blog({
))}
+
>
);
}