import { Button } from "@/components/ui/button"; export const metadata = { title: "Playground | json-render", }; export default function PlaygroundPage() { return (

Playground

Try json-render with a live example.

Run locally

Clone the repository and run the example dashboard.

            {`git clone https://github.com/vercel-labs/json-render
cd json-render
pnpm install
pnpm dev`}
          

Open http://localhost:3001 for the example dashboard.

Example prompts

Try these prompts in the example dashboard:

{[ "Create a revenue dashboard with monthly metrics", "Build a user management panel with a table", "Design a settings form with text inputs", "Make a notification center with alerts", ].map((prompt) => (
{prompt}
))}

Interactive playground

A browser-based playground is coming soon.

); }