diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 782b594..2dedd81 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,6 +1,7 @@ import Link from "next/link"; import "./page.css"; import { getBlogArticles } from "@/utils/blog"; +import path from "path"; export default async function Page() { const articles = await getBlogArticles(); @@ -9,7 +10,7 @@ export default async function Page() { return (
{articles.map((article, i) => ( - +

{article.title}

{article.teaser}