UIPackage
Menu

Framework

Change language

Boilerplate repo

Security — Trust Centre Grid

blockmarketing

Trust centre surface pairing compliance programmes with their audit date, scope, and report link, over a row of operational controls stated as facts rather than claims.

Also available for React ->

Installation

$npx shadcn-vue@latest add https://uipkge.dev/r/vue/security-trust-center-grid.json
Named registry:npx shadcn-vue@latest add @uipkge/security-trust-center-gridInstalls to:app/components/blocks/

Variants

Loading interactive previews…

Files installed (1)

  • app/components/blocks/SecurityTrustCenterGrid.vue4.1 kB
    <script setup lang="ts">
    import { ArrowUpRight, FileText, KeyRound, Lock, ScrollText, ServerCog, Users } from 'lucide-vue-next'
    import { Badge } from '@/components/ui/badge'
    import { Button } from '@/components/ui/button'
    import { Card, CardContent } from '@/components/ui/card'
    import { Separator } from '@/components/ui/separator'
    
    const programmes = [
      {
        name: 'SOC 2 Type II',
        scope: 'Security, availability, confidentiality',
        audited: 'Mar 2026',
        body: 'Prescient Assurance',
      },
      { name: 'ISO 27001', scope: 'Information security management', audited: 'Jan 2026', body: 'BSI Group' },
      { name: 'HIPAA', scope: 'PHI handling, BAA available', audited: 'Nov 2025', body: 'Third-party assessed' },
      { name: 'GDPR', scope: 'EU data protection, DPA available', audited: 'Ongoing', body: 'Self-attested' },
    ]
    
    // Stated as mechanisms, not reassurance: each line is something a reviewer can
    // verify rather than a claim about intent.
    const controls = [
      { icon: Lock, label: 'Read-only warehouse access', detail: 'No write grant is ever requested.' },
      { icon: KeyRound, label: 'Customer-managed keys', detail: 'Rotation handled through your KMS.' },
      { icon: Users, label: 'SCIM deprovisioning', detail: 'Access ends with the directory record.' },
      { icon: ScrollText, label: 'Immutable audit log', detail: 'Append-only, exportable, 7-year retention.' },
      { icon: ServerCog, label: 'Regional isolation', detail: 'EU, US, and AU estates do not share planes.' },
      { icon: FileText, label: 'Published subprocessors', detail: 'Change notice 30 days before it takes effect.' },
    ]
    </script>
    
    <template>
      <section data-slot="security-trust-center-grid" class="bg-background">
        <div class="mx-auto max-w-6xl px-6 py-20 lg:py-28">
          <div class="flex flex-wrap items-end justify-between gap-6">
            <div class="max-w-2xl">
              <Badge variant="secondary">Trust</Badge>
              <h2 class="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">What we can show you, with dates</h2>
              <p class="text-muted-foreground mt-3 text-lg">
                Reports are available under NDA. Everything below names who audited it and when.
              </p>
            </div>
            <Button variant="outline">Open the trust centre</Button>
          </div>
    
          <div class="mt-10 grid gap-4 sm:grid-cols-2 lg:grid-cols-4">
            <Card v-for="programme in programmes" :key="programme.name" class="group">
              <CardContent class="flex h-full flex-col p-5">
                <p class="text-sm font-semibold">{{ programme.name }}</p>
                <p class="text-muted-foreground mt-2 text-xs leading-relaxed">{{ programme.scope }}</p>
                <Separator class="my-4" />
                <dl class="space-y-1.5 text-xs">
                  <div class="flex items-center justify-between gap-3">
                    <dt class="text-muted-foreground">Audited</dt>
                    <dd class="font-medium">{{ programme.audited }}</dd>
                  </div>
                  <div class="flex items-center justify-between gap-3">
                    <dt class="text-muted-foreground">By</dt>
                    <dd class="truncate font-medium">{{ programme.body }}</dd>
                  </div>
                </dl>
                <Button variant="ghost" size="sm" class="mt-auto justify-start px-0 pt-4 text-xs">
                  Request report
                  <ArrowUpRight
                    class="ml-1 size-3 transition-transform group-hover:translate-x-0.5 group-hover:-translate-y-0.5"
                    aria-hidden="true"
                  />
                </Button>
              </CardContent>
            </Card>
          </div>
    
          <Separator class="my-10" />
    
          <ul class="grid gap-x-10 gap-y-6 sm:grid-cols-2 lg:grid-cols-3">
            <li v-for="control in controls" :key="control.label" class="flex gap-3">
              <component :is="control.icon" class="text-muted-foreground mt-0.5 size-4 shrink-0" aria-hidden="true" />
              <div class="min-w-0">
                <p class="text-sm font-medium">{{ control.label }}</p>
                <p class="text-muted-foreground mt-0.5 text-xs leading-relaxed">{{ control.detail }}</p>
              </div>
            </li>
          </ul>
        </div>
      </section>
    </template>
    

Raw manifest:https://uipkge.dev/r/vue/security-trust-center-grid.json