import { createFileRoute } from "@tanstack/react-router"; import { useState } from "react"; import { OutlineLink } from "@/components/outline-button"; import { PageHero } from "@/components/page-hero"; import { rights } from "@/lib/content"; import { cn } from "@/lib/utils"; export const Route = createFileRoute("/rights")({ component: Rights }); function Rights() { const [checked, setChecked] = useState>({}); const count = rights.filter((r) => checked[r.title]).length; return (

The stack

Check the house

{String(count).padStart(2, "0")} / {String(rights.length).padStart(2, "0")} affirmed

    {rights.map((item) => { const on = Boolean(checked[item.title]); return (
  • ); })}

New York had to pass a Fashion Workers Act because the old stack did not protect models. California’s Talent Agencies Act is already in Labor Commissioner fights. This page is the house rule, not a moodboard.

Ask for the contract Book a Saturday
); }