"use client" import * as React from "react" import { GalleryHorizontalIcon } from "lucide-react" import { trackEvent } from "@/lib/events" import { cn } from "@/lib/utils" import { useLayout } from "@/hooks/use-layout" import { Button } from "@/registry/new-york-v4/ui/button" export function SiteConfig({ className }: React.ComponentProps) { const { layout, setLayout } = useLayout() return ( ) }