import type { ReactNode } from 'react' export function HomeShell({ children }: { children: ReactNode }) { return (
{children}
) }