{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "modal-sticky-example",
  "title": "Modal Sticky",
  "description": "modal-sticky-example",
  "registryDependencies": [
    "https://intentui.com/r/button",
    "https://intentui.com/r/modal"
  ],
  "files": [
    {
      "path": "src/components/examples/overlays/modal/modal-sticky-example.tsx",
      "content": "'use client'\n\nimport { Button } from '@/components/ui/button'\nimport {\n  Modal,\n  ModalBody,\n  ModalClose,\n  ModalContent,\n  ModalDescription,\n  ModalFooter,\n  ModalHeader,\n  ModalTitle,\n} from '@/components/ui/modal'\n\nexport default function ModalStickyDemo() {\n  return (\n    <Modal>\n      <Button>Read</Button>\n      <ModalContent size=\"2xl\">\n        <ModalHeader>\n          <ModalTitle>Terms of Use</ModalTitle>\n          <ModalDescription>\n            If you do not agree to these terms, please refrain from using our services.\n          </ModalDescription>\n        </ModalHeader>\n        <ModalBody>\n          <div className=\"prose prose-zinc dark:prose-invert prose-h3:text-sm/6 prose-h4:text-sm/6 prose-p:text-muted-fg\">\n            <p>\n              By accessing or using our services, you agree to be bound by these terms. If you do\n              not agree to these terms, please refrain from using our services.\n            </p>\n            <h3> User Obligations</h3>\n            <h4>Account Responsibility</h4>\n            <p>\n              When you create an account with us, you are responsible for maintaining the\n              confidentiality of your account and password.\n            </p>\n            <p>\n              You agree to accept responsibility for all activities that occur under your account.\n              You must notify us immediately of any breach of security or unauthorized use of your\n              account.\n            </p>\n            <h4>Compliance with Laws</h4>\n            <p>\n              You agree to comply with all applicable laws, regulations, and policies in connection\n              with your use of our services. This includes adhering to intellectual property laws\n              and refraining from any unlawful behavior while using our platform.\n            </p>\n            <div>\n              <h3> Prohibited Activities</h3>\n              <p>\n                You are not permitted to access or attempt to access any of our services by any\n                means other than through the interface provided by us. Any form of hacking,\n                bypassing, or circumventing our security protocols is strictly prohibited.\n              </p>\n            </div>\n            <div>\n              <h4>Misuse of Content</h4>\n              <p>\n                You agree not to misuse, reproduce, distribute, or modify any content from our\n                services unless explicitly authorized by us. This includes engaging in activities\n                such as scraping, data mining, or using automated systems to extract data.\n              </p>\n            </div>\n            <div>\n              <h4>Harassment and Abuse</h4>\n              <p>\n                You are prohibited from using our services to harass, abuse, or harm other users.\n                This includes sending unsolicited messages, stalking, or engaging in any form of\n                cyberbullying. We reserve the right to terminate accounts found in violation of this\n                policy.\n              </p>\n            </div>\n            <div>\n              <h4>Ownership of Content</h4>\n              <p>\n                All content, trademarks, service marks, logos, and other intellectual property\n                displayed on our services are the property of their respective owners. You may not\n                use, copy, or distribute any content without prior written permission from the\n                owner.\n              </p>\n            </div>\n            <div>\n              <h4>User-Generated Content</h4>\n              <p>\n                By submitting content to our services, you grant us a worldwide, royalty-free,\n                non-exclusive license to use, distribute, modify, and display that content for the\n                purpose of providing our services.\n              </p>\n            </div>\n            <p>\n              You retain all ownership rights to your content but agree to allow us to use it in\n              accordance with these terms.\n            </p>\n          </div>\n        </ModalBody>\n        <ModalFooter>\n          <ModalClose>Close</ModalClose>\n          <Button>Accept</Button>\n        </ModalFooter>\n      </ModalContent>\n    </Modal>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/modal-sticky-example/page.tsx"
    }
  ],
  "type": "registry:page"
}