feat(confidence-engine): add tester legal pages
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user