{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "board-resolution-signoff",
  "title": "Board Resolution Signoff",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/board-resolution-signoff/BoardResolutionSignoff.vue",
      "content": "<script setup lang=\"ts\">\nimport { ref } from 'vue'\nimport type { HTMLAttributes } from 'vue'\nimport {\n  Building2,\n  Calendar,\n  Check,\n  CheckCircle2,\n  Copy,\n  Download,\n  Lock,\n  Printer,\n  Scale,\n  Share2,\n  ShieldCheck,\n} from 'lucide-vue-next'\nimport { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'\nimport { Separator } from '@/components/ui/separator'\nimport { cn } from '@/lib/utils'\n\nexport interface BoardResolutionSignoffProps {\n  class?: HTMLAttributes['class']\n}\n\nconst props = defineProps<BoardResolutionSignoffProps>()\n\nconst resolutionRef = 'BOD-RES-2026-08'\nconst companyName = 'UIPKGE Technologies Inc.'\nconst corporateEntity = 'Delaware C-Corp • Entity File #7849201'\nconst sha256Digest = 'd4e9a83f120c9103ba88e721a998c0b291ab8e0172bf42e01a88c34f9810b492'\n\nconst copiedRef = ref(false)\nconst copiedDigest = ref(false)\nconst downloadStatus = ref<'idle' | 'generating' | 'downloaded'>('idle')\nconst sharedStatus = ref(false)\n\nfunction handleCopyRef() {\n  if (typeof navigator !== 'undefined' && navigator.clipboard) {\n    navigator.clipboard.writeText(`#${resolutionRef}`)\n    copiedRef.value = true\n    setTimeout(() => {\n      copiedRef.value = false\n    }, 2000)\n  }\n}\n\nfunction handleCopyDigest() {\n  if (typeof navigator !== 'undefined' && navigator.clipboard) {\n    navigator.clipboard.writeText(sha256Digest)\n    copiedDigest.value = true\n    setTimeout(() => {\n      copiedDigest.value = false\n    }, 2000)\n  }\n}\n\nfunction handleDownloadPdf() {\n  downloadStatus.value = 'generating'\n  setTimeout(() => {\n    downloadStatus.value = 'downloaded'\n    setTimeout(() => {\n      downloadStatus.value = 'idle'\n    }, 3000)\n  }, 1600)\n}\n\nfunction handlePrint() {\n  if (typeof window !== 'undefined') {\n    window.print()\n  }\n}\n\nfunction handleShare() {\n  sharedStatus.value = true\n  setTimeout(() => {\n    sharedStatus.value = false\n  }, 2500)\n}\n\nconst directors = [\n  {\n    name: 'Elena Rostova',\n    title: 'Director & Chief Executive Officer',\n    initials: 'ER',\n    avatar: 'https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=150&auto=format&fit=crop&q=80',\n    signature: 'Elena Rostova',\n    signedDate: 'Aug 21, 2026 · 14:32 PST',\n    authMethod: 'Hardware FIDO2 Security Key',\n    certId: 'SIG-BOD-2026-ER01',\n    vote: 'AYE (In Favor)',\n  },\n  {\n    name: 'Marcus Vance',\n    title: 'Director & Chief Technology Officer',\n    initials: 'MV',\n    avatar: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&auto=format&fit=crop&q=80',\n    signature: 'Marcus Vance',\n    signedDate: 'Aug 21, 2026 · 14:28 PST',\n    authMethod: 'Passkey Biometric (Touch ID / PKI)',\n    certId: 'SIG-BOD-2026-MV02',\n    vote: 'AYE (In Favor)',\n  },\n  {\n    name: 'Sarah Jenkins, J.D.',\n    title: 'Independent Director & Audit Chair',\n    initials: 'SJ',\n    avatar: 'https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=150&auto=format&fit=crop&q=80',\n    signature: 'Sarah Jenkins',\n    signedDate: 'Aug 21, 2026 · 14:15 PST',\n    authMethod: 'Enterprise SSO + FIDO2 2FA',\n    certId: 'SIG-BOD-2026-SJ03',\n    vote: 'AYE (In Favor)',\n  },\n]\n</script>\n\n<template>\n  <div data-slot=\"board-resolution-signoff\" :class=\"cn('bg-background text-foreground w-full space-y-6', props.class)\">\n    <!-- Header Section -->\n    <header class=\"border-border bg-card rounded-xl border p-5 shadow-xs sm:p-6\">\n      <div class=\"flex flex-col gap-5 lg:flex-row lg:items-center lg:justify-between\">\n        <div class=\"space-y-2\">\n          <!-- Top Tag & Reference Row -->\n          <div class=\"flex flex-wrap items-center gap-2\">\n            <Badge wrap variant=\"outline\" class=\"font-mono text-xs font-semibold\"> #{{ resolutionRef }} </Badge>\n\n            <button\n              type=\"button\"\n              class=\"border-border hover:bg-muted focus-visible:ring-ring bg-muted/40 text-muted-foreground hover:text-foreground inline-flex min-h-6 items-center gap-1 rounded border px-2 py-0.5 font-mono text-xs transition-colors focus-visible:ring-2 focus-visible:outline-hidden\"\n              title=\"Copy Resolution Reference ID\"\n              @click=\"handleCopyRef\"\n            >\n              <Check v-if=\"copiedRef\" class=\"text-success size-3\" />\n              <Copy v-else class=\"size-3\" />\n              <span>{{ copiedRef ? 'Copied' : 'Copy Ref' }}</span>\n            </button>\n\n            <Badge wrap class=\"border-success/30 bg-success/10 text-success gap-1.5 text-xs font-medium\">\n              <ShieldCheck class=\"size-3.5 shrink-0\" />\n              <span>3 of 3 Directors Signed · Unanimously Approved</span>\n            </Badge>\n\n            <Badge wrap variant=\"secondary\" class=\"font-mono text-xs\"> DGCL § 141(f) </Badge>\n          </div>\n\n          <!-- Title & Organization Info -->\n          <div>\n            <h1 class=\"text-foreground text-xl font-bold tracking-tight sm:text-2xl lg:text-3xl\">\n              Unanimous Written Consent of the Board of Directors\n            </h1>\n            <div class=\"text-muted-foreground mt-1 flex flex-wrap items-center gap-2 text-xs sm:text-sm\">\n              <span class=\"text-foreground flex items-center gap-1.5 font-semibold\">\n                <Building2 class=\"text-primary size-4 shrink-0\" />\n                {{ companyName }}\n              </span>\n              <span>{{ corporateEntity }}</span>\n              <span class=\"flex items-center gap-1\">\n                <Calendar class=\"size-3.5 shrink-0\" />\n                Action Date: August 21, 2026\n              </span>\n            </div>\n          </div>\n        </div>\n\n        <!-- Header Actions -->\n        <div class=\"flex flex-wrap items-center gap-2.5\">\n          <Button variant=\"outline\" size=\"sm\" class=\"gap-1.5 text-xs shadow-xs\" @click=\"handlePrint\">\n            <Printer class=\"size-3.5\" />\n            <span>Print Minutes</span>\n          </Button>\n\n          <Button variant=\"outline\" size=\"sm\" class=\"gap-1.5 text-xs shadow-xs\" @click=\"handleShare\">\n            <Share2 class=\"size-3.5\" />\n            <span>{{ sharedStatus ? 'Link Copied!' : 'Share Vault' }}</span>\n          </Button>\n\n          <Button\n            aria-label=\"Download attachment\"\n            variant=\"default\"\n            size=\"sm\"\n            class=\"gap-2 text-xs font-semibold shadow-xs\"\n            :disabled=\"downloadStatus === 'generating'\"\n            @click=\"handleDownloadPdf\"\n          >\n            <Download class=\"size-4\" />\n            <span v-if=\"downloadStatus === 'generating'\">Generating Certified PDF...</span>\n            <span v-else-if=\"downloadStatus === 'downloaded'\">Certified Minutes Downloaded!</span>\n            <span v-else>Download Certified Minutes PDF</span>\n          </Button>\n        </div>\n      </div>\n    </header>\n\n    <!-- Quorum & Voting Summary Card -->\n    <Card class=\"border-border bg-card shadow-xs\">\n      <CardHeader class=\"p-5 pb-3 sm:p-6 sm:pb-4\">\n        <div class=\"flex flex-col gap-2 sm:flex-row sm:items-center sm:justify-between\">\n          <div class=\"flex items-center gap-2.5\">\n            <div class=\"bg-primary/10 text-primary flex size-8 items-center justify-center rounded-lg\">\n              <Scale class=\"size-4\" />\n            </div>\n            <div>\n              <CardTitle class=\"text-base font-bold sm:text-lg\">Quorum &amp; Voting Certification</CardTitle>\n              <CardDescription class=\"text-xs\">\n                Official vote tally and statutory governance determination under Delaware General Corporation Law\n              </CardDescription>\n            </div>\n          </div>\n\n          <Badge\n            wrap\n            variant=\"outline\"\n            class=\"border-success/40 bg-success/10 text-success text-success self-start font-mono text-xs sm:self-auto\"\n          >\n            <CheckCircle2 class=\"mr-1 size-3\" />\n            Statutory Threshold Satisfied\n          </Badge>\n        </div>\n      </CardHeader>\n\n      <CardContent class=\"space-y-5 p-5 pt-0 sm:p-6 sm:pt-0\">\n        <!-- 4 KPI Metrics Grid -->\n        <div class=\"grid grid-cols-2 gap-3 sm:grid-cols-4\">\n          <div class=\"border-border/70 bg-muted/20 rounded-lg border p-3.5\">\n            <p class=\"text-muted-foreground text-xs font-medium\">Board Quorum</p>\n            <p class=\"text-foreground text-success text-success mt-1 font-mono text-lg font-bold tabular-nums\">\n              100% Achieved\n            </p>\n            <p class=\"text-muted-foreground mt-0.5 text-xs\">3 of 3 Voting Directors Present</p>\n          </div>\n\n          <div class=\"border-border/70 bg-muted/20 rounded-lg border p-3.5\">\n            <p class=\"text-muted-foreground text-xs font-medium\">Voting Tally</p>\n            <p class=\"text-foreground mt-1 font-mono text-lg font-bold tabular-nums\">3 In Favor · 0 Opposed</p>\n            <p class=\"text-muted-foreground mt-0.5 text-xs\">3 Ayes, 0 Nays, 0 Abstentions</p>\n          </div>\n\n          <div class=\"border-border/70 bg-muted/20 rounded-lg border p-3.5\">\n            <p class=\"text-muted-foreground text-xs font-medium\">Action Structure</p>\n            <p class=\"text-foreground mt-1 text-xs font-bold sm:text-sm\">Unanimous Written Consent</p>\n            <p class=\"text-muted-foreground mt-0.5 text-xs\">In Lieu of Special Meeting</p>\n          </div>\n\n          <div class=\"border-border/70 bg-muted/20 rounded-lg border p-3.5\">\n            <p class=\"text-muted-foreground text-xs font-medium\">Effective Timestamp</p>\n            <p class=\"text-foreground mt-1 font-mono text-xs font-bold tabular-nums sm:text-sm\">\n              Aug 21, 2026 · 14:32 PST\n            </p>\n            <p class=\"text-muted-foreground mt-0.5 text-xs\">RFC 3161 Certified Vault</p>\n          </div>\n        </div>\n\n        <!-- Approval Progress Bar -->\n        <div class=\"space-y-1.5\">\n          <div class=\"flex items-center justify-between text-xs\">\n            <span class=\"text-foreground flex items-center gap-1.5 font-medium\">\n              <CheckCircle2 class=\"text-success size-3\" />\n              Unanimous Board Approval Level (3/3)\n            </span>\n            <span class=\"text-success font-mono font-semibold\">100% Unanimous</span>\n          </div>\n          <div class=\"bg-muted h-2 w-full overflow-hidden rounded-full\">\n            <div class=\"bg-success h-full w-full rounded-full\"></div>\n          </div>\n        </div>\n\n        <!-- Director Quick Vote Roster -->\n        <div class=\"border-border/60 bg-muted/10 grid grid-cols-1 gap-2.5 rounded-lg border p-3 sm:grid-cols-3\">\n          <div\n            v-for=\"director in directors\"\n            :key=\"director.name\"\n            class=\"border-border/50 bg-card flex items-center justify-between rounded-md border px-3 py-2 text-xs\"\n          >\n            <div class=\"flex min-w-0 items-center gap-2\">\n              <Avatar class=\"size-6 shrink-0\">\n                <AvatarImage :src=\"director.avatar\" :alt=\"director.name\" />\n                <AvatarFallback class=\"text-xs\">{{ director.initials }}</AvatarFallback>\n              </Avatar>\n              <div class=\"truncate\">\n                <p class=\"text-foreground truncate font-medium\">{{ director.name }}</p>\n                <p class=\"text-muted-foreground truncate text-xs\">{{ director.title.split('&')[0].trim() }}</p>\n              </div>\n            </div>\n            <Badge wrap class=\"border-success/30 bg-success/10 text-success shrink-0 font-mono text-xs\">\n              {{ director.vote.split(' ')[0] }}\n            </Badge>\n          </div>\n        </div>\n      </CardContent>\n    </Card>\n\n    <!-- Structured Resolution Document Body -->\n    <article class=\"border-border bg-card space-y-8 rounded-xl border p-6 shadow-xs sm:p-8\">\n      <!-- Legal Header Sub-Banner -->\n      <div class=\"border-border space-y-2 border-b pb-6 text-center\">\n        <Badge wrap variant=\"outline\" class=\"font-mono text-xs tracking-widest uppercase\">\n          Official Corporate Governance Record\n        </Badge>\n        <h2 class=\"text-foreground text-lg font-bold tracking-tight uppercase sm:text-xl md:text-2xl\">\n          Action by Unanimous Written Consent of the Board of Directors of {{ companyName }}\n        </h2>\n        <p class=\"text-muted-foreground mx-auto max-w-2xl text-xs\">\n          Pursuant to Section 141(f) of the General Corporation Law of the State of Delaware and the Amended and\n          Restated Bylaws of the Corporation\n        </p>\n      </div>\n\n      <!-- Formal Preamble -->\n      <div\n        class=\"border-border/80 bg-muted/20 text-muted-foreground rounded-lg border p-4 text-xs leading-relaxed sm:p-5 sm:text-sm\"\n      >\n        <p>\n          <strong class=\"text-foreground\">THE UNDERSIGNED</strong>, constituting all the active members of the Board of\n          Directors of <strong class=\"text-foreground\">{{ companyName }}</strong\n          >, a corporation duly organized and existing under the laws of the State of Delaware (the\n          &ldquo;Corporation&rdquo;), do hereby consent to the adoption of the following resolutions and direct that\n          this Unanimous Written Consent be filed with the minutes of the proceedings of the Board of Directors:\n        </p>\n      </div>\n\n      <!-- Resolution 1: Equity Incentive Option Pool Expansion -->\n      <section class=\"space-y-4\">\n        <div class=\"flex flex-wrap items-center justify-between gap-2\">\n          <div class=\"flex items-center gap-2\">\n            <span class=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">01</span>\n            <h3 class=\"text-foreground text-base font-bold sm:text-lg\">\n              Authorization and Adoption of the 2026 Equity Incentive Option Pool Expansion\n            </h3>\n          </div>\n          <Badge wrap variant=\"secondary\" class=\"font-mono text-xs\">Capitalization &amp; Equity</Badge>\n        </div>\n\n        <div class=\"text-muted-foreground space-y-3 text-xs leading-relaxed sm:text-sm\">\n          <p class=\"italic\">\n            <strong class=\"text-foreground font-semibold not-italic\">WHEREAS</strong>, the Board of Directors deems it\n            to be in the best interests of the Corporation and its stockholders to expand the number of shares reserved\n            under the 2026 Equity Incentive Plan in order to recruit, motivate, and retain vital engineering, product,\n            and leadership talent;\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">NOW, THEREFORE, BE IT RESOLVED</strong>, that the\n            Corporation&rsquo;s 2026 Equity Incentive Plan be, and it hereby is, amended to increase the aggregate\n            number of authorized shares of Common Stock reserved for issuance thereunder by an additional\n            <strong class=\"text-foreground font-mono font-semibold\">1,500,000 shares</strong> (increasing the overall\n            unallocated option reserve from 10.0% to 15.0% of the Corporation&rsquo;s fully-diluted capitalization),\n            effective as of the date hereof; and\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">RESOLVED FURTHER</strong>, that the Compensation Committee of\n            the Board of Directors and the executive officers of the Corporation are hereby authorized and empowered to\n            grant options, stock appreciation rights, and restricted stock awards from said expanded pool in conformity\n            with standard four-year vesting schedules (subject to a one-year cliff).\n          </p>\n        </div>\n\n        <!-- Key Terms Summary Box 1 -->\n        <div class=\"border-border/60 bg-muted/15 grid grid-cols-2 gap-3 rounded-lg border p-3.5 text-xs sm:grid-cols-4\">\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Pool Addition</span>\n            <p class=\"text-foreground mt-0.5 font-mono font-bold tabular-nums\">1,500,000 Common Shares</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Reserve Ratio</span>\n            <p class=\"text-foreground mt-0.5 font-mono font-bold tabular-nums\">10.0% → 15.0% FD</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Vesting Baseline</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">4-Year / 1-Year Cliff</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Committee Scope</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">Full Delegation</p>\n          </div>\n        </div>\n      </section>\n\n      <Separator />\n\n      <!-- Resolution 2: Approval of Cloudflare Pages Infrastructure Agreement -->\n      <section class=\"space-y-4\">\n        <div class=\"flex flex-wrap items-center justify-between gap-2\">\n          <div class=\"flex items-center gap-2\">\n            <span class=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">02</span>\n            <h3 class=\"text-foreground text-base font-bold sm:text-lg\">\n              Approval of Cloudflare Pages Infrastructure Enterprise Agreement\n            </h3>\n          </div>\n          <Badge wrap variant=\"secondary\" class=\"font-mono text-xs\">Infrastructure &amp; Hosting</Badge>\n        </div>\n\n        <div class=\"text-muted-foreground space-y-3 text-xs leading-relaxed sm:text-sm\">\n          <p class=\"italic\">\n            <strong class=\"text-foreground font-semibold not-italic\">WHEREAS</strong>, the Corporation operates a\n            mission-critical global UI registry distributed across multi-region edge nodes requiring continuous uptime\n            SLAs, global caching, DDoS mitigation, and sub-10ms distribution latency;\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">NOW, THEREFORE, BE IT RESOLVED</strong>, that the 3-Year\n            Enterprise Master Services Agreement with Cloudflare, Inc. for Pages Enterprise Infrastructure, Global Edge\n            Caching, and Advanced Threat Defense, with an annualized commitment not to exceed\n            <strong class=\"text-foreground font-mono font-semibold\">$180,000.00 USD</strong>, be, and it hereby is,\n            ratified, confirmed, and approved in all respects; and\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">RESOLVED FURTHER</strong>, that the Chief Executive Officer\n            and Chief Technology Officer be, and each of them individually hereby is, authorized, directed, and\n            empowered to finalize, execute, and deliver said Enterprise Agreement on behalf of the Corporation.\n          </p>\n        </div>\n\n        <!-- Key Terms Summary Box 2 -->\n        <div class=\"border-border/60 bg-muted/15 grid grid-cols-2 gap-3 rounded-lg border p-3.5 text-xs sm:grid-cols-4\">\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Service Provider</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">Cloudflare, Inc.</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Contract Duration</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">36 Months (3 Years)</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Annual Commitment Cap</span>\n            <p class=\"text-foreground mt-0.5 font-mono font-bold tabular-nums\">$180,000.00 USD / yr</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Uptime Guarantee</span>\n            <p class=\"text-foreground mt-0.5 font-mono font-bold tabular-nums\">99.99% Enterprise SLA</p>\n          </div>\n        </div>\n      </section>\n\n      <Separator />\n\n      <!-- Resolution 3: Appointment of Independent Legal Counsel -->\n      <section class=\"space-y-4\">\n        <div class=\"flex flex-wrap items-center justify-between gap-2\">\n          <div class=\"flex items-center gap-2\">\n            <span class=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">03</span>\n            <h3 class=\"text-foreground text-base font-bold sm:text-lg\">Appointment of Independent Legal Counsel</h3>\n          </div>\n          <Badge wrap variant=\"secondary\" class=\"font-mono text-xs\">Corporate Governance &amp; Counsel</Badge>\n        </div>\n\n        <div class=\"text-muted-foreground space-y-3 text-xs leading-relaxed sm:text-sm\">\n          <p class=\"italic\">\n            <strong class=\"text-foreground font-semibold not-italic\">WHEREAS</strong>, the Corporation requires\n            distinguished outside corporate and securities counsel for intellectual property licensing, SOC 2 Type II\n            compliance oversight, and upcoming institutional growth financing rounds;\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">NOW, THEREFORE, BE IT RESOLVED</strong>, that the engagement\n            of <strong class=\"text-foreground\">Wilson Sonsini Goodrich &amp; Rosati P.C.</strong> as Independent Legal\n            Counsel to the Corporation be, and it hereby is, approved and ratified; and\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">RESOLVED FURTHER</strong>, that the executive officers of the\n            Corporation be, and each of them hereby is, authorized to execute customary engagement documentation and\n            approve standard retainer fee schedules.\n          </p>\n        </div>\n\n        <!-- Key Terms Summary Box 3 -->\n        <div class=\"border-border/60 bg-muted/15 grid grid-cols-2 gap-3 rounded-lg border p-3.5 text-xs sm:grid-cols-4\">\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Appointed Firm</span>\n            <p class=\"text-foreground mt-0.5 truncate font-bold\">Wilson Sonsini Goodrich &amp; Rosati</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Primary Focus</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">Corp Governance &amp; IP</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Billing Model</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">Standard Hourly + Retainer</p>\n          </div>\n          <div>\n            <span class=\"text-muted-foreground font-medium\">Jurisdictional Scope</span>\n            <p class=\"text-foreground mt-0.5 font-bold\">Delaware / Federal Tech</p>\n          </div>\n        </div>\n      </section>\n\n      <Separator />\n\n      <!-- Omnibus General Authorization Clause -->\n      <section class=\"space-y-3\">\n        <div class=\"flex items-center gap-2\">\n          <span class=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">04</span>\n          <h3 class=\"text-foreground text-base font-bold sm:text-lg\">\n            Omnibus Authorization and Ratification of Prior Actions\n          </h3>\n        </div>\n\n        <div class=\"text-muted-foreground space-y-3 text-xs leading-relaxed sm:text-sm\">\n          <p>\n            <strong class=\"text-foreground font-semibold\">RESOLVED</strong>, that the officers of the Corporation be,\n            and each of them hereby is, authorized, directed, and empowered, in the name and on behalf of the\n            Corporation, to take all such further actions, pay all fees, and execute and deliver all such further\n            agreements, certificates, notices, and instruments as may be necessary, proper, or advisable to carry out\n            the full purpose and intent of the foregoing resolutions; and\n          </p>\n          <p>\n            <strong class=\"text-foreground font-semibold\">RESOLVED FURTHER</strong>, that all actions heretofore taken\n            by any officer or director of the Corporation in connection with any matter referred to in the foregoing\n            resolutions are hereby ratified, confirmed, and approved in all respects as the authorized act and deed of\n            the Corporation.\n          </p>\n        </div>\n      </section>\n    </article>\n\n    <!-- Director Signature Execution Blocks -->\n    <section class=\"space-y-4\">\n      <div class=\"flex flex-col gap-1 sm:flex-row sm:items-center sm:justify-between\">\n        <div>\n          <h2 class=\"text-foreground text-base font-bold sm:text-lg\">\n            Director Signature Execution &amp; Electronic Certification\n          </h2>\n          <p class=\"text-muted-foreground text-xs\">\n            Executed by all directors of the Corporation pursuant to Section 141(f) of the Delaware General Corporation\n            Law\n          </p>\n        </div>\n        <Badge\n          wrap\n          class=\"border-success/30 bg-success/10 text-success text-success self-start font-mono text-xs sm:self-auto\"\n        >\n          <CheckCircle2 class=\"mr-1 size-3\" />\n          3 of 3 Signatures Authenticated\n        </Badge>\n      </div>\n\n      <!-- 3 Director Signing Tiles Grid -->\n      <div class=\"grid grid-cols-1 gap-4 md:grid-cols-3\">\n        <Card\n          v-for=\"director in directors\"\n          :key=\"director.name\"\n          class=\"border-border/80 bg-card hover:border-border shadow-xs transition-colors\"\n        >\n          <CardHeader class=\"p-4 pb-2\">\n            <div class=\"flex items-center justify-between gap-2\">\n              <div class=\"flex min-w-0 items-center gap-2.5\">\n                <Avatar class=\"border-border size-10 shrink-0 border\">\n                  <AvatarImage :src=\"director.avatar\" :alt=\"director.name\" />\n                  <AvatarFallback class=\"text-xs font-bold\">{{ director.initials }}</AvatarFallback>\n                </Avatar>\n                <div class=\"min-w-0\">\n                  <CardTitle class=\"truncate text-sm font-semibold\">{{ director.name }}</CardTitle>\n                  <CardDescription class=\"truncate text-xs\">{{ director.title }}</CardDescription>\n                </div>\n              </div>\n            </div>\n          </CardHeader>\n\n          <CardContent class=\"space-y-3 p-4 pt-2 text-xs\">\n            <!-- Digital Signature Calligraphy Box -->\n            <div class=\"border-success/30 bg-success/5 dark:bg-success/10 rounded-lg border p-3 text-center\">\n              <div class=\"text-muted-foreground mb-1 flex items-center justify-between text-xs\">\n                <span class=\"font-mono text-xs\">Digital Signature</span>\n                <Badge wrap variant=\"outline\" class=\"border-success/40 bg-success/10 text-success font-mono text-xs\">\n                  <Check class=\"mr-1 size-2.5\" /> Verified\n                </Badge>\n              </div>\n\n              <!-- Cursive signature representation -->\n              <div class=\"my-1.5 flex h-12 items-center justify-center\">\n                <span class=\"text-success text-success text-xl font-medium tracking-wide italic\">\n                  {{ director.signature }}\n                </span>\n              </div>\n\n              <div\n                class=\"text-muted-foreground border-success/20 flex items-center justify-center gap-1 border-t pt-1 font-mono text-xs\"\n              >\n                <ShieldCheck class=\"text-success size-3\" />\n                <span>e-Signed via FIDO2 / PKI Ledger</span>\n              </div>\n            </div>\n\n            <!-- Signature Metadata List -->\n            <div class=\"text-muted-foreground space-y-1.5 font-mono text-xs\">\n              <div class=\"flex items-center justify-between\">\n                <span>Executed:</span>\n                <span class=\"text-foreground font-semibold tabular-nums\">{{ director.signedDate }}</span>\n              </div>\n              <div class=\"flex items-center justify-between\">\n                <span>Auth Protocol:</span>\n                <span class=\"text-foreground max-w-[170px] truncate text-right font-semibold\">{{\n                  director.authMethod\n                }}</span>\n              </div>\n              <div class=\"flex items-center justify-between\">\n                <span>Certificate Hash:</span>\n                <span class=\"text-foreground font-semibold\">{{ director.certId }}</span>\n              </div>\n            </div>\n          </CardContent>\n        </Card>\n      </div>\n    </section>\n\n    <!-- Corporate Seal & Cryptographic Certificate Audit Strip -->\n    <Card class=\"border-border bg-muted/20 border shadow-xs\">\n      <CardContent class=\"flex flex-col gap-4 p-5 text-xs lg:flex-row lg:items-center lg:justify-between\">\n        <div class=\"flex items-center gap-3\">\n          <!-- Corporate Seal Emblem SVG -->\n          <div\n            class=\"bg-card border-warning/40 relative flex size-12 shrink-0 items-center justify-center rounded-full border p-1 shadow-xs\"\n          >\n            <svg class=\"text-warning size-full\" viewBox=\"0 0 100 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n              <circle cx=\"50\" cy=\"50\" r=\"46\" stroke=\"currentColor\" stroke-width=\"2\" stroke-dasharray=\"3 2\" />\n              <circle cx=\"50\" cy=\"50\" r=\"40\" stroke=\"currentColor\" stroke-width=\"1.5\" />\n              <path\n                d=\"M50 18 L60 38 L82 38 L64 52 L70 74 L50 60 L30 74 L36 52 L18 38 L40 38 Z\"\n                stroke=\"currentColor\"\n                stroke-width=\"1.5\"\n                fill=\"currentColor\"\n                fill-opacity=\"0.1\"\n              />\n              <circle cx=\"50\" cy=\"50\" r=\"10\" stroke=\"currentColor\" stroke-width=\"1\" />\n            </svg>\n          </div>\n\n          <div>\n            <div class=\"flex items-center gap-2\">\n              <span class=\"text-foreground font-bold\">Official Corporate Seal &amp; Immutable Minutes Vault</span>\n              <Badge wrap variant=\"outline\" class=\"border-success/30 text-success font-mono text-xs\">\n                Tamper-Proof\n              </Badge>\n            </div>\n            <p class=\"text-muted-foreground mt-0.5\">\n              State of Delaware Division of Corporations • Entity File #7849201 • RFC 3161 Qualified Timestamping\n            </p>\n          </div>\n        </div>\n\n        <!-- Cryptographic Audit Hash & Verification Action -->\n        <div class=\"flex flex-wrap items-center gap-3\">\n          <div class=\"flex items-center gap-1.5 font-mono\">\n            <span class=\"text-muted-foreground\">SHA-256 Digest:</span>\n            <button\n              type=\"button\"\n              class=\"hover:bg-muted focus-visible:ring-ring border-border bg-card text-foreground inline-flex min-h-6 items-center gap-1 rounded border px-2 py-0.5 transition-colors focus-visible:ring-2 focus-visible:outline-hidden\"\n              title=\"Copy SHA-256 Cryptographic Digest\"\n              @click=\"handleCopyDigest\"\n            >\n              <span class=\"tabular-nums\">d4e9a8...810b492</span>\n              <Check v-if=\"copiedDigest\" class=\"text-success size-3\" />\n              <Copy v-else class=\"text-muted-foreground size-3\" />\n            </button>\n          </div>\n\n          <Badge wrap variant=\"secondary\" class=\"gap-1 font-mono text-xs\">\n            <Lock class=\"text-success size-3\" />\n            <span>256-Bit Vault Sealed</span>\n          </Badge>\n        </div>\n      </CardContent>\n    </Card>\n  </div>\n</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/BoardResolutionSignoff.vue"
    }
  ],
  "dependencies": [
    "lucide-vue-next"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/vue/avatar.json",
    "https://uipkge.dev/r/vue/badge.json",
    "https://uipkge.dev/r/vue/button.json",
    "https://uipkge.dev/r/vue/card.json",
    "https://uipkge.dev/r/vue/separator.json"
  ],
  "description": "Corporate board meeting minutes and unanimous written consent resolution with director voting tallies, legal recitals, and digital signature signoff execution.",
  "categories": [
    "legal",
    "governance",
    "app"
  ]
}