UIPackage
Menu

Framework

Change language

Boilerplate repo

Pricing — Sticky Header Matrix

blockmarketing

Long feature matrix whose plan header row pins to the top while the body scrolls, so the column a checkmark belongs to stays identifiable at any scroll depth.

Also available for React ->

Installation

$npx shadcn-vue@latest add https://uipkge.dev/r/vue/pricing-matrix-sticky-header.json
Named registry:npx shadcn-vue@latest add @uipkge/pricing-matrix-sticky-headerInstalls to:app/components/blocks/

Variants

Loading interactive previews…

npm dependencies

Files installed (1)

  • app/components/blocks/PricingMatrixStickyHeader.vue3.5 kB
    <script setup lang="ts">
    import { Check, Minus } from 'lucide-vue-next'
    import { Badge } from '@/components/ui/badge'
    import { Button } from '@/components/ui/button'
    import { Card, CardContent } from '@/components/ui/card'
    import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'
    
    const plans = ['Team', 'Business', 'Enterprise']
    
    // Cells are true / false / a string, so a plan can state a limit rather than
    // only claiming a feature exists.
    const rows = [
      { feature: 'Certified metric definitions', values: ['50', '500', 'Unlimited'] },
      { feature: 'Connected warehouses', values: ['1', '3', 'Unlimited'] },
      { feature: 'Query budget per team', values: [false, true, true] },
      { feature: 'Row-level access control', values: [false, true, true] },
      { feature: 'SCIM provisioning', values: [false, true, true] },
      { feature: 'Audit log export', values: [false, '90 days', 'Unlimited'] },
      { feature: 'Period locking', values: [false, true, true] },
      { feature: 'Embedded dashboards', values: [false, true, true] },
      { feature: 'Data residency choice', values: [false, false, true] },
      { feature: 'Customer-managed keys', values: [false, false, true] },
      { feature: 'Private link', values: [false, false, true] },
      { feature: 'Named support engineer', values: [false, false, true] },
    ]
    </script>
    
    <template>
      <section data-slot="pricing-matrix-sticky-header" class="bg-background">
        <div class="mx-auto max-w-4xl px-6 py-20 lg:py-28">
          <Badge variant="secondary">Compare plans</Badge>
          <h2 class="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">Every line, no asterisks</h2>
          <p class="text-muted-foreground mt-3 text-lg">
            Limits differ between plans. Where a plan caps something, the cap is written in the cell.
          </p>
    
          <Card class="mt-8">
            <CardContent class="p-0">
              <!-- The header pins with CSS alone. Thirty rows down, a checkmark is
                   still attributable to a column without scrolling back up. -->
              <div class="max-h-[28rem] overflow-auto">
                <Table>
                  <TableHeader class="bg-card sticky top-0 z-10">
                    <TableRow>
                      <TableHead class="bg-card">Capability</TableHead>
                      <TableHead v-for="plan in plans" :key="plan" class="bg-card text-center">{{ plan }}</TableHead>
                    </TableRow>
                  </TableHeader>
                  <TableBody>
                    <TableRow v-for="row in rows" :key="row.feature">
                      <TableCell class="font-medium">{{ row.feature }}</TableCell>
                      <TableCell v-for="(value, index) in row.values" :key="index" class="text-center">
                        <template v-if="value === true">
                          <Check class="text-success mx-auto size-4" aria-hidden="true" />
                          <span class="sr-only">Included</span>
                        </template>
                        <template v-else-if="value === false">
                          <Minus class="text-muted-foreground/50 mx-auto size-4" aria-hidden="true" />
                          <span class="sr-only">Not included</span>
                        </template>
                        <span v-else class="font-mono text-xs">{{ value }}</span>
                      </TableCell>
                    </TableRow>
                  </TableBody>
                </Table>
              </div>
            </CardContent>
          </Card>
    
          <div class="mt-6 flex flex-wrap gap-3">
            <Button>Start on Team</Button>
            <Button variant="outline">Talk about Enterprise</Button>
          </div>
        </div>
      </section>
    </template>
    

Raw manifest:https://uipkge.dev/r/vue/pricing-matrix-sticky-header.json