Skip to content

Commit

Permalink
add privacy and terms
Browse files Browse the repository at this point in the history
  • Loading branch information
paulclindo committed Nov 28, 2023
1 parent 39484ea commit 7bff06c
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions apps/shinkai-visor/src/components/welcome/welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { srcUrlResolver } from '../../helpers/src-url-resolver';
export default function Welcome() {
const history = useHistory();
return (
<div className="flex h-full flex-col justify-between">
<div className="flex h-full flex-col justify-between gap-3">
<div>
<div className="grid place-content-center ">
<img
Expand All @@ -18,7 +18,7 @@ export default function Welcome() {
src={srcUrlResolver(logo)}
/>
</div>
<div className="-ml-6 -mr-6 pb-6 pt-3">
<div className="-ml-6 -mr-6 pt-1">
<img
alt="shinkai logo"
className="animate-spin-slow w-full"
Expand All @@ -35,6 +35,28 @@ export default function Welcome() {
>
<FormattedMessage id="setup" />
</Button>
<p className="text-center">
<span className="block">By continuing, you agree to our</span>
<span>
<a
className={'px-1 text-blue-400 underline'}
href={'https://www.shinkai.com/terms-of-service'}
rel="noreferrer"
target={'_blank'}
>
Terms of Service
</a>
<span>and</span>
<a
className={'px-1 text-blue-400 underline'}
href={'https://www.shinkai.com/privacy-policy'}
rel="noreferrer"
target={'_blank'}
>
Privacy Policy
</a>
</span>
</p>
</div>
);
}

0 comments on commit 7bff06c

Please sign in to comment.