mirror of
https://github.com/supabase/supabase.git
synced 2026-05-12 21:29:28 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import { Download } from 'lucide-react'
|
|
import { Button } from 'ui'
|
|
|
|
import {
|
|
ScaffoldSection,
|
|
ScaffoldSectionContent,
|
|
ScaffoldSectionDetail,
|
|
} from '@/components/layouts/Scaffold'
|
|
import { useSendEventMutation } from '@/data/telemetry/send-event-mutation'
|
|
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
|
|
|
|
export const TIA = () => {
|
|
const { data: organization } = useSelectedOrganizationQuery()
|
|
const { mutate: sendEvent } = useSendEventMutation()
|
|
|
|
return (
|
|
<ScaffoldSection className="py-12">
|
|
<ScaffoldSectionDetail>
|
|
<h4 className="mb-5">Transfer Impact Assessment (TIA)</h4>
|
|
<div className="space-y-2 text-sm text-foreground-light [&_p]:m-0">
|
|
<p>
|
|
All organizations can access and use our TIA as part of their GDPR-compliant data
|
|
transfer process.
|
|
</p>
|
|
</div>
|
|
</ScaffoldSectionDetail>
|
|
<ScaffoldSectionContent>
|
|
<div className="@lg:flex items-center justify-center h-full">
|
|
<Button asChild type="default" iconRight={<Download />}>
|
|
<a
|
|
href="https://supabase.com/downloads/docs/Supabase+TIA+250314.pdf"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
download={true}
|
|
onClick={() =>
|
|
sendEvent({
|
|
action: 'document_view_button_clicked',
|
|
properties: { documentName: 'TIA' },
|
|
groups: { organization: organization?.slug ?? 'Unknown' },
|
|
})
|
|
}
|
|
>
|
|
Download TIA
|
|
</a>
|
|
</Button>
|
|
</div>
|
|
</ScaffoldSectionContent>
|
|
</ScaffoldSection>
|
|
)
|
|
}
|