{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "billing-information-01", "type": "registry:block", "description": "Manage billing contacts and company information", "registryDependencies": [ "button", "card" ], "files": [ { "path": "creative-tim-ui/blocks/billing-information-01/page.tsx", "content": "\"use client\"\n\nimport { Building2, Pencil, Plus, Trash2 } from \"lucide-react\"\n\nimport { Button } from \"@/components/ui/button\"\nimport { Card } from \"@/components/ui/card\"\n\ninterface BillingCardProps {\n company: string\n contact: string\n email: string\n vat: string\n}\n\nfunction BillingCard({ company, contact, email, vat }: BillingCardProps) {\n return (\n \n
\n
\n
\n \n
\n
\n

{company}

\n

Company

\n
\n
\n
\n \n \n \n Delete\n \n
\n
\n
\n
\n Contact: \n {contact}\n
\n
\n \n Email Address:{\" \"}\n \n {email}\n
\n
\n \n VAT Number:{\" \"}\n \n {vat}\n
\n
\n
\n )\n}\n\nexport default function BillingInformation01() {\n return (\n
\n
\n
\n

Billing Information

\n

\n View and update your billing details quickly and easily.\n

\n
\n \n
\n
\n \n \n \n
\n
\n )\n}\n", "type": "registry:page", "target": "app/billing-information/page.tsx" } ], "meta": { "iframeHeight": "700px", "container": "w-full bg-surface min-h-svh flex px-4 py-12 items-center md:py-20 justify-center min-w-0", "mobile": "component", "details": "Easily manage billing contacts and information associated with different companies within one platform. Built with shadcn/ui Card and Button components for a clean, accessible interface. Perfect for multi-company billing management, enterprise dashboards, and SaaS platforms requiring organized billing contact management." }, "categories": [ "billing" ] }