12 lines
472 B
React
12 lines
472 B
React
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>
|
|
);
|
|
} |