Data Rights RequestPRO

A legal section listing four data rights as hairline cards, each with an icon tile and a response window, beside a soft panel holding a working request form with a request type, email, and free-text detail.

Legal56: Data Rights Request

A legal section listing four data rights as hairline cards, each with an icon tile and a response window, beside a soft panel holding a working request form with a request type, email and free-text detail.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/legal56?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/legal56?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/legal56.tsx, the shadcn/ui input, select and textarea components it depends on, and the badge23 and button21 components it uses for the eyebrow and the submit action.

Quick start

The installed file exports legal56Demo alongside the block: the exact props behind the preview above. Spread it to get a working page in one line.

tsx
import { Legal56, legal56Demo } from "@/components/beste/block/legal56";

export default function DataRightsPage() {
  return <Legal56 {...legal56Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Download, Eye } from "lucide-react";
import { Legal56 } from "@/components/beste/block/legal56";

export default function DataRightsPage() {
  return (
    <Legal56
      badge={{ label: "Your data rights" }}
      heading="Ask for your records and get them, without a lawyer"
      description="Every right below is exercised from this page."
      rights={[
        {
          icon: Eye,
          title: "See what we hold",
          description: "A complete copy of the personal data on your account.",
          window: "Within 30 days",
        },
        {
          icon: Download,
          title: "Take it elsewhere",
          description: "The same data in a machine-readable export.",
          window: "Within 30 days",
        },
      ]}
      formTitle="Make a request"
      form={{
        typeLabel: "What are you asking for",
        typeOptions: ["A copy of my data", "An export I can take elsewhere", "Erasure"],
        emailLabel: "The email on the account",
        emailPlaceholder: "you@practice.com",
        detailLabel: "Anything that helps us find you",
        detailPlaceholder: "Practice name, previous email, or a reference number",
        submitLabel: "Send the request",
        finePrint: "We confirm receipt the same working day.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
rightsRightCard[][]The rights themselves, two-up from sm
formTitlestringHeading in the request panel
formRequestFormEvery label, placeholder and option in the form
classNamestringExtra classes for the outer section
ts
import type { LucideIcon } from "lucide-react";

type RightCard = {
  icon: LucideIcon;
  title: string;
  description: string;
  window: string;
};

type RequestForm = {
  typeLabel: string;
  typeOptions: string[];
  emailLabel: string;
  emailPlaceholder: string;
  detailLabel: string;
  detailPlaceholder: string;
  submitLabel: string;
  finePrint: string;
};

Behavior notes

Wiring the form up

This block renders the fields and leaves submission to you. For validation, error states and submit handling, the patterns in React Hook Form, TanStack Form, and Formisch cover this shape of request form, including the select.

More Legal blocks

View all Legal
PRO

legal4

GDPR Data Rights Panel

Lists user data rights (access, rectify, erase, restrict, export) with request buttons. Perfect for GDPR compliance portals allowing users to exercise their rights.

PRO

legal53

Trust And Compliance Overview

A compliance section pairing four hairline certification cards, each with an accent icon and a tone-coded status pill, with a hairline definition list of data handling specifics and a security pack request.

PRO

legal51

Rights Comparison Table

Two-column comparison table showing data rights and privacy features by plan tier. Badge-styled values for Free vs Pro plans.

PRO

legal48

Data Request Process Timeline

Vertical timeline showing the step-by-step process for handling data requests. Numbered steps with connecting lines guide the user through the workflow.

PRO

legal43

Privacy Policy Page

Full privacy policy content card with sections covering data collection, usage, sharing, retention, rights, and security. Ideal for dedicated privacy pages.

PRO

legal12

NDA Template Card

Shows NDA details with type (mutual/unilateral), duration, and key terms covered. Perfect for presenting confidentiality agreement summaries with download options.