feat(confidence-engine): add tester legal pages

This commit is contained in:
2026-09-10 06:18:28 +01:00
parent 96b47d16a3
commit 27ded883e5
10 changed files with 208 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import Link from "next/link";
export default function LegalNavigation() {
return (
<nav aria-label="Legal information" className="flex flex-wrap justify-center gap-x-5 gap-y-2 text-sm text-gray-500">
<Link href="/privacy" className="hover:text-teal-700">Privacy</Link>
<Link href="/terms" className="hover:text-teal-700">Terms</Link>
<Link href="/cookies" className="hover:text-teal-700">Cookies</Link>
</nav>
);
}