Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
579 B

export function AccountTerms() {
return (
<div className="mt-3 text-left text-xs leading-normal text-gray-500">
By continuing to use our services, you acknowledge that you have both read
and agree to our{' '}
<a
href="/terms"
className="font-medium underline underline-offset-2 hover:text-black"
>
Terms of Service
</a>{' '}
and{' '}
<a
href="/privacy"
className="font-medium underline underline-offset-2 hover:text-black"
>
Privacy Policy
</a>
.
</div>
);
}