previous
This commit is contained in:
+10
-3
@@ -1,11 +1,18 @@
|
||||
import Article from "@/components/wiki/Article";
|
||||
import { getAllWikiPages } from "@/lib/wiki";
|
||||
|
||||
export default function WikiIndexPage() {
|
||||
const allPages = getAllWikiPages();
|
||||
export default async function WikiIndexPage() {
|
||||
const allPages = await getAllWikiPages();
|
||||
return (
|
||||
<Article title="Wiki">
|
||||
<p>hi</p>
|
||||
{allPages.map(({ title, path }) => (
|
||||
<>
|
||||
<a key={path} href={`/wiki/${path}`}>
|
||||
{title}
|
||||
</a>
|
||||
<br />
|
||||
</>
|
||||
))}
|
||||
</Article>
|
||||
);
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Projekt Starten
|
||||
title: Test Page
|
||||
updatedAt: "2026-08-04"
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user