BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/@shadcnexamples/help-center

Help Center

shadcnexamples/help-center
FreeBlock

Searchable help center with article categories, FAQ accordions, and support contact options. Designed to improve self-service resolution and reduce customer support tickets.

Install it

npx shadcn@latest add https://shadcnexamples.com/r/help-center.json

Source

examples/help-center/components/faq.tsxshadcnexamples.com/r/help-center.json
1import {
2 Accordion,
3 AccordionContent,
4 AccordionItem,
5 AccordionTrigger,
6} from "@/components/ui/accordion";
7
8interface FAQItem {
9 id: string;
10 question: string;
11 answer: string;
12}
13
14interface FAQAccordionProps {
15 items: FAQItem[];
16}
17
18const FAQ = ({ items }: FAQAccordionProps) => {
19 return (
20 <div className="w-full max-w-4xl mx-auto">
21 <Accordion type="single" collapsible className="space-y-4">
22 {items.map((item) => (
23 <AccordionItem
24 key={item.id}
25 value={item.id}
26 className="border border-border rounded-lg px-4 bg-card shadow-sm hover:shadow-md transition-shadow duration-200"
27 >
28 <AccordionTrigger className="text-left text-lg font-medium hover:no-underline py-4">
29 {item.question}
30 </AccordionTrigger>
31 <AccordionContent className="text-muted-foreground pb-6 text-base leading-relaxed">
32 {item.answer}
33 </AccordionContent>
34 </AccordionItem>
35 ))}
36 </Accordion>
37 </div>
38 );
39};
40
41export default FAQ;

What it pulls in

npm packages

  • lucide-react

Other registry items

  • accordion
  • card
  • input

Files it writes

  • examples/help-center/components/faq.tsx
  • examples/help-center/components/list-item.tsx
  • examples/help-center/components/search.tsx
  • examples/help-center/page.tsx

Facts

Registry
@shadcnexamples
Type
registry:block
Access
Free
Files written
4
Licence
the repository states none
First indexed
2026-08-01
Last confirmed
today

Go to the source

shadcnexamples.com shadcn-examples/shadcn-examples on GitHub Raw registry item This item as JSON

More from @shadcnexamples

All 70 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Activity Feedactivity-feed@shadcnexamplesBlocksFree1 dep
Add Product Formadd-product-form@shadcnexamplesBlocksFree4 deps · 3 files
AI Chatai-chat@shadcnexamplesBlocksFree2 deps · 8 files
Authenticationauthentication@shadcnexamplesBlocksFree1 dep · 2 files
Bento Gridbento-grid@shadcnexamplesBlocksFree1 dep
Blog Detail Pageblog-detail-page@shadcnexamplesBlocksFree1 dep · 4 files
Blog Pageblog-page@shadcnexamplesBlocksFree1 dep · 4 files
Changelog Pagechangelog-page@shadcnexamplesBlocksFree1 dep
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex