diff --git a/src/app/(home)/topic/[topic]/page.tsx b/src/app/(home)/topic/[topic]/page.tsx
new file mode 100644
index 00000000..f2dcb6df
--- /dev/null
+++ b/src/app/(home)/topic/[topic]/page.tsx
@@ -0,0 +1,31 @@
+import { HomeFeed } from "~/components/home/HomeFeed"
+import { HomeSidebar } from "~/components/home/HomeSidebar"
+
+import topics from "../../../../../data/topics.json"
+
+function Topic({
+ params,
+}: {
+ params: {
+ topic: string
+ }
+}) {
+ const info = topics.find((t) => t.name === params.topic)
+
+ return (
+ {info?.description}Topic: {params.topic}
+