import Link from "next/link"; import { cn } from "~/lib/utils"; type LegalLinksProps = { className?: string; linkClassName?: string; }; export function LegalLinks({ className, linkClassName }: LegalLinksProps) { const linkStyles = cn( "text-foreground font-medium hover:underline", linkClassName, ); return ( Terms of Service {" and "} Privacy Policy ); } type LegalAgreementNoticeProps = { action: string; className?: string; }; export function LegalAgreementNotice({ action, className, }: LegalAgreementNoticeProps) { return (
By {action}, you agree to our