| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { Alert, AlertDescription, AlertTitle, CriticalIcon } from 'ui'
- import {
- PageSection,
- PageSectionContent,
- PageSectionDescription,
- PageSectionMeta,
- PageSectionSummary,
- PageSectionTitle,
- } from 'ui-patterns/PageSection'
- import { DeleteAccountButton } from './DeleteAccountButton'
- export const AccountDeletion = () => {
- return (
- <PageSection>
- <PageSectionMeta>
- <PageSectionSummary>
- <PageSectionTitle>Danger zone</PageSectionTitle>
- <PageSectionDescription>
- Permanently delete your Briven account and data.
- </PageSectionDescription>
- </PageSectionSummary>
- </PageSectionMeta>
- <PageSectionContent>
- <Alert variant="destructive">
- <CriticalIcon />
- <AlertTitle>Request for account deletion</AlertTitle>
- <AlertDescription>
- Deleting your account is permanent and cannot be undone. Your data will be deleted
- within 30 days, but we may retain some metadata and logs for longer where required or
- permitted by law.
- </AlertDescription>
- <AlertDescription className="mt-3">
- <DeleteAccountButton />
- </AlertDescription>
- </Alert>
- </PageSectionContent>
- </PageSection>
- )
- }
|