import { Metadata } from "next" import Link from "next/link" import { ArrowRightIcon } from "@radix-ui/react-icons" import { cn } from "@/lib/utils" import { ExamplesNav } from "@/components/examples-nav" import { PageHeader, PageHeaderDescription, PageHeaderHeading, } from "@/components/page-header" import { buttonVariants } from "@/registry/new-york/ui/button" import { Separator } from "@/registry/new-york/ui/separator" export const metadata: Metadata = { title: "Examples", description: "Check out some examples app built using the components.", } interface ExamplesLayoutProps { children: React.ReactNode } export default function ExamplesLayout({ children }: ExamplesLayoutProps) { return ( <>
🎉 {" "} Style, a new CLI and more. Introducing Style, a new CLI and more. Check out some examples. Examples Dashboard, cards, authentication. Some examples built using the components. Use this as a guide to build your own.
Get Started Components
{children}
) }