{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "snapp-feature-layout", "title": "Snapp Feature Layout", "description": "Shared feature shell, page body, and bordered surface primitives for embedded Snapps.", "registryDependencies": [ "@snapp/snapp-theme", "@snapp/snapp-utils" ], "files": [ { "path": "registry/radix-nova/components/layout/feature-layout.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface FeatureShellProps extends React.ComponentProps<\"div\"> {\n navigation?: React.ReactNode\n showNavBar?: boolean\n}\n\nfunction FeatureShell({\n children,\n className,\n navigation,\n showNavBar = true,\n ...props\n}: FeatureShellProps) {\n return (\n