"use client"; import type { ReactNode } from "react"; import { PrototypeStarterScreenChrome } from "./prototype-starter-screen-chrome"; type PrototypeStarterScreenShellProps = { children: ReactNode; }; export function PrototypeStarterScreenShell({ children, }: PrototypeStarterScreenShellProps) { return (