docs(landing): add links to privacy policy and terms of service

This commit is contained in:
Amruth Pillai 2022-03-09 20:19:05 +01:00
parent 612335696c
commit 4fe5788b23
No known key found for this signature in database
GPG Key ID: E3C57DF9B80855AD
4 changed files with 18 additions and 3 deletions

View File

@ -11,6 +11,7 @@ const Footer: React.FC<Props> = ({ className }) => {
return (
<footer className={clsx('text-xs', className)}>
<p>{t('common.footer.license')}</p>
<p>
<Trans t={t} i18nKey="common.footer.credit">
A passion project by

View File

@ -158,6 +158,18 @@ const Home: NextPage = () => {
{t('landing.links.links.donate')}
</Button>
</a>
<Link href="/meta/privacy" passHref>
<Button variant="text" startIcon={<LinkIcon />}>
{t('landing.links.links.privacy')}
</Button>
</Link>
<Link href="/meta/service" passHref>
<Button variant="text" startIcon={<LinkIcon />}>
{t('landing.links.links.service')}
</Button>
</Link>
</div>
</section>

View File

@ -17,7 +17,7 @@ const TermsOfService: NextPage = () => (
<h3>
<strong>
Do whatever you want, governed by the{' '}
Do whatever you want, distributed under the{' '}
<a href="https://choosealicense.com/licenses/mit/" target="_blank" rel="noreferrer">
MIT license
</a>

View File

@ -20,8 +20,10 @@
"links": {
"heading": "Links",
"links": {
"donate": "Donate to Reactive Resume",
"github": "Source Code on GitHub"
"donate": "Donate",
"github": "Source Code",
"privacy": "Privacy Policy",
"service": "Terms of Service"
}
},
"screenshots": {