UIPackage
Menu

Framework

Change language

Boilerplate repo

How It Works — Before & After

blockmarketing

Two-column process contrast setting the old workflow against the new one step for step, with matched row heights so the saving at each stage reads at a glance.

Also available for Vue ->

Installation

$npx shadcn@latest add https://uipkge.dev/r/react/how-it-works-before-after.json
Named registry:npx shadcn@latest add @uipkge-react/how-it-works-before-afterInstalls to:components/blocks/

Variants

Loading interactive previews…

npm dependencies

Files installed (1)

  • components/blocks/HowItWorksBeforeAfter.tsx4 kB
    'use client'
    
    import { ArrowRight, Check, X } from 'lucide-react'
    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'
    
    // Rows are paired, not two independent lists — the saving only reads when the
    // old and new step for the same stage sit on one line.
    const rows = [
      {
        stage: 'Collect',
        before: 'Analyst exports four CSVs from three systems and reconciles them by hand.',
        after: 'Metrics resolve against the warehouse at query time. Nothing is exported.',
        saving: '~6 h per close',
      },
      {
        stage: 'Define',
        before: 'Each team keeps its own revenue formula in a spreadsheet nobody reviews.',
        after: 'One certified definition, versioned, with an owner and a review step.',
        saving: '11 → 1 definition',
      },
      {
        stage: 'Publish',
        before: 'Dashboards are rebuilt by hand and drift from the deck within a week.',
        after: 'Publishing a definition updates every consumer at once, revertible.',
        saving: 'No rebuild',
      },
      {
        stage: 'Audit',
        before: 'Restatements are reconstructed from email threads at year end.',
        after: 'The change history is the audit trail; the pack exports from it.',
        saving: '~3 days saved',
      },
    ]
    
    export function HowItWorksBeforeAfter() {
      return (
        <section data-slot="how-it-works-before-after" className="bg-background">
          <div className="mx-auto max-w-6xl px-6 py-20 lg:py-28">
            <div className="max-w-2xl">
              <Badge variant="secondary">Before and after</Badge>
              <h2 className="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">
                The same four stages, minus the relay
              </h2>
              <p className="text-muted-foreground mt-3 text-lg">
                Nothing here is new work. It is the existing close, with the manual steps removed.
              </p>
            </div>
    
            <div className="mt-12 space-y-4">
              {rows.map((row) => (
                <div key={row.stage}>
                  <div className="flex items-baseline gap-3">
                    <span className="text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase">{row.stage}</span>
                    <Separator className="flex-1" />
                    <span className="text-muted-foreground shrink-0 font-mono text-xs">{row.saving}</span>
                  </div>
    
                  {/* items-stretch so both cards in a row share a height and the
                      comparison stays line-for-line. */}
                  <div className="mt-3 grid items-stretch gap-3 md:grid-cols-[1fr_auto_1fr]">
                    <Card className="bg-muted/30">
                      <CardContent className="flex h-full items-start gap-3 p-4">
                        <X className="text-destructive mt-0.5 size-4 shrink-0" aria-hidden="true" />
                        <p className="text-muted-foreground text-sm leading-relaxed">{row.before}</p>
                      </CardContent>
                    </Card>
    
                    <div className="hidden items-center justify-center md:flex">
                      <ArrowRight className="text-muted-foreground/50 size-4" aria-hidden="true" />
                    </div>
    
                    <Card>
                      <CardContent className="flex h-full items-start gap-3 p-4">
                        <Check className="text-success mt-0.5 size-4 shrink-0" aria-hidden="true" />
                        <p className="text-sm leading-relaxed">{row.after}</p>
                      </CardContent>
                    </Card>
                  </div>
                </div>
              ))}
            </div>
    
            <div className="border-border mt-10 flex flex-wrap items-center justify-between gap-4 border-t pt-6">
              <p className="text-muted-foreground text-sm">
                Measured against Northwind&apos;s own close, the quarter before rollout.
              </p>
              <Button>
                See the rollout plan
                <ArrowRight className="ml-2 size-4" aria-hidden="true" />
              </Button>
            </div>
          </div>
        </section>
      )
    }
    

Raw manifest:https://uipkge.dev/r/react/how-it-works-before-after.json