import { QuestionMarkCircleIcon } from "@heroicons/react/24/solid";
import { readdir } from "fs/promises";
import Link from "next/link";
export default async function HelpHome() {
const articles = await readdir("./md/help articles");
return (
<>
{articles.map((a) => (
-
{a.replace(".md", "")}
→
))}
>
);
}