import {Image} from "@heroui/react"; import {ScriptProviders} from "@/components/scripts/script-providers"; interface DocsLayoutProps { children: React.ReactNode; } export default function DocsLayout({children}: DocsLayoutProps) { return ( <>
{children}
); }