"use client" import type { ReactNode } from "react" interface ShellProps { children: ReactNode } export function Shell({ children }: ShellProps) { return