import * as React from "react" import { OpenInV0Button } from "@/components/open-in-v0-button" import { HelloWorld } from "@/registry/new-york/hello-world/hello-world" import { ExampleForm } from "@/registry/new-york/example-form/example-form" import PokemonPage from "@/registry/new-york/complex-component/page" // This page displays items from the custom registry. // You are free to implement this with your own design as needed. export default function Home() { return (

Custom Registry

A custom registry for distributing code using shadcn.

A simple hello world component

A contact form with Zod validation.

A complex component showing hooks, libs and components.

) }