Files
stats/apps/public/src/components/personal-data-warning.tsx
Carl-Gerhard Lindesvärd ac4429d6d9 feat: new public website
2025-12-02 09:22:36 +01:00

11 lines
268 B
TypeScript

import { Callout } from 'fumadocs-ui/components/callout';
export function PersonalDataWarning() {
return (
<Callout>
Keep in mind that this is considered personal data. Make sure you have the
users consent before calling this!
</Callout>
);
}