We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70651e0 commit 758fe1aCopy full SHA for 758fe1a
src/app/(public)/[slug]/page.tsx
@@ -1,4 +1,5 @@
1
import Card from "@/components/card";
2
+import Link from "next/link";
3
4
export default async function FooterPage({
5
params,
@@ -15,6 +16,12 @@ export default async function FooterPage({
15
16
17
return (
18
<div className="container mx-auto py-8">
19
+ <Link
20
+ href="/"
21
+ className="mb-4 inline-block text-blue-600 hover:underline"
22
+ >
23
+ ← vorige
24
+ </Link>
25
<Card>
26
<h1 className="text-h1 mb-4">{title}</h1>
27
<p className="text-lg">Hier wordt aan gewerkt.</p>
src/app/[slug]/page.tsx
0 commit comments