{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-dialog-5",
  "description": "Dialog with long content",
  "registryDependencies": [
    "@coss/button",
    "@coss/dialog"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-dialog-5.tsx",
      "content": "import { Button } from \"@/registry/default/ui/button\";\nimport {\n  Dialog,\n  DialogClose,\n  DialogFooter,\n  DialogHeader,\n  DialogPanel,\n  DialogPopup,\n  DialogTitle,\n  DialogTrigger,\n} from \"@/registry/default/ui/dialog\";\n\nexport default function Particle() {\n  return (\n    <Dialog>\n      <DialogTrigger render={<Button variant=\"outline\" />}>\n        Terms & Conditions\n      </DialogTrigger>\n      <DialogPopup className=\"sm:max-w-md\" showCloseButton={false}>\n        <DialogHeader>\n          <DialogTitle>Terms & Conditions</DialogTitle>\n        </DialogHeader>\n        <DialogPanel>\n          <div className=\"flex flex-col gap-4 [&_strong]:font-semibold [&_strong]:text-foreground\">\n            <div className=\"flex flex-col gap-4\">\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Acceptance of Terms</strong>\n                </p>\n                <p>\n                  By accessing and using this website, users agree to comply\n                  with and be bound by these Terms of Service. Users who do not\n                  agree with these terms should discontinue use of the website\n                  immediately.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>User Account Responsibilities</strong>\n                </p>\n                <p>\n                  Users are responsible for maintaining the confidentiality of\n                  their account credentials. Any activities occurring under a\n                  user&apos;s account are the sole responsibility of the account\n                  holder. Users must notify the website administrators\n                  immediately of any unauthorized account access.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Content Usage and Restrictions</strong>\n                </p>\n                <p>\n                  The website and its original content are protected by\n                  intellectual property laws. Users may not reproduce,\n                  distribute, modify, create derivative works, or commercially\n                  exploit any content without explicit written permission from\n                  the website owners.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Limitation of Liability</strong>\n                </p>\n                <p>\n                  The website provides content &ldquo;as is&rdquo; without any\n                  warranties. The website owners shall not be liable for direct,\n                  indirect, incidental, consequential, or punitive damages\n                  arising from user interactions with the platform.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>User Conduct Guidelines</strong>\n                </p>\n                <ul className=\"list-disc pl-6\">\n                  <li>Not upload harmful or malicious content</li>\n                  <li>Respect the rights of other users</li>\n                  <li>\n                    Avoid activities that could disrupt website functionality\n                  </li>\n                  <li>Comply with applicable local and international laws</li>\n                </ul>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Modifications to Terms</strong>\n                </p>\n                <p>\n                  The website reserves the right to modify these terms at any\n                  time. Continued use of the website after changes constitutes\n                  acceptance of the new terms.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Termination Clause</strong>\n                </p>\n                <p>\n                  The website may terminate or suspend user access without prior\n                  notice for violations of these terms or for any other reason\n                  deemed appropriate by the administration.\n                </p>\n              </div>\n              <div className=\"flex flex-col gap-1\">\n                <p>\n                  <strong>Governing Law</strong>\n                </p>\n                <p>\n                  These terms are governed by the laws of the jurisdiction where\n                  the website is primarily operated, without regard to conflict\n                  of law principles.\n                </p>\n              </div>\n            </div>\n          </div>\n        </DialogPanel>\n        <DialogFooter>\n          <DialogClose render={<Button variant=\"ghost\" />}>Cancel</DialogClose>\n          <Button type=\"button\">I agree</Button>\n        </DialogFooter>\n      </DialogPopup>\n    </Dialog>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "categories": [
    "dialog"
  ],
  "type": "registry:block"
}