diff --git a/frontend/src/app/news/[article]/page.tsx b/frontend/src/app/blog/[article]/page.tsx
similarity index 69%
rename from frontend/src/app/news/[article]/page.tsx
rename to frontend/src/app/blog/[article]/page.tsx
index a79ee8f..56b2c91 100644
--- a/frontend/src/app/news/[article]/page.tsx
+++ b/frontend/src/app/blog/[article]/page.tsx
@@ -20,9 +20,21 @@ export async function generateStaticParams() {
});
});
+ params.push({
+ article: "indicvoices",
+ });
+
return params;
}
+const blogIdMap = {
+ indicvoices: 8,
+};
+
export default function News({ params }: { params: { article: string } }) {
- return ;
+ if (params.article.includes("indicvoices")) {
+ return ;
+ } else {
+ return ;
+ }
}