Accordion Default
Accordion Default is a React and Tailwind CSS layout component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
layout
What it is
Accordion Default is a React and Tailwind CSS layout component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Accordion Default
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger
} from "@/components/ui/accordion";
const items = [
{
id: "1",
title: "Product Information",
content:
"Our flagship product combines cutting-edge technology with sleek design. Built with premium materials, it offers unparalleled performance and reliability."
},
{
id: "2",
title: "Shipping Details",
content:
"We offer worldwide shipping through trusted courier partners. Standard delivery takes 3-5 business days, while express shipping ensures delivery within 1-2 business days."
},
{
id: "3",
title: "Return Policy",
content:
"We stand behind our products with a comprehensive 30-day return policy. If you're not completely satisfied, simply return the item in its original condition."
}
];
export default function AccordionDemo() {
return (
<Accordion type="single" className="w-full" defaultValue="1">
{items.map((item) => (
<AccordionItem value={item.id} key={item.id} className="py-2">
<AccordionTrigger className="font-semibold">{item.title}</AccordionTrigger>
<AccordionContent className="text-muted-foreground pb-2">{item.content}</AccordionContent>
</AccordionItem>
))}
</Accordion>
);
}