"use client"; import { ThemeColor } from "./types"; export function DocsNextra({ themeColor }: { themeColor?: ThemeColor }) { return (
{[ { section: "Getting Started", items: ["Introduction", "Installation", "Quick Start"] }, { section: "Components", items: ["Button", "Card", "Input", "Modal", "Table"] }, { section: "API Reference", items: ["REST API", "Webhooks"] }, ].map(g => (

{g.section}

{g.items.map((item, i) => (
{item}
))}
))}
Docs/Getting Started/Introduction

Introduction

Acme UI is a collection of re-usable components that you can copy and paste into your web apps. Built with Radix UI and Tailwind CSS.

$ npm install acme-ui

Key features

{["Accessible by default", "Customisable", "Open source", "TypeScript ready"].map(f => (
{f}
))}
); } export function DocsShadcnCustom({ themeColor }: { themeColor?: ThemeColor }) { return (
Acme Docs
{[{ section: "Guides", items: ["Introduction", "Installation", "Theming"] }, { section: "Components", items: ["Button", "Input", "Select", "Dialog"] }].map(g => (

{g.section}

{g.items.map((item, i) => (
{item}
))}
))}

Introduction

A set of beautifully designed components built with Radix UI and Tailwind CSS.

bash

npx shadcn@latest init

{["Button", "Card", "Input", "Badge"].map(c => (

{c}

View component →

))}
); }