import Link from "next/link"; import type { ReactNode } from "react"; import { SiteNav } from "./SiteNav"; export function SiteShell({ children }: { children: ReactNode }) { return (
{children}
); }