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 ( <>