import { HomeLayout as BasicHomeLayout, DocContent } from "@rspress/core/theme"; import { useFrontmatter } from '@rspress/core/runtime'; interface HomeLayoutProps { components?: Record; } function HomeLayout(props: HomeLayoutProps) { console.log(props) const { frontmatter } = useFrontmatter(); return (
: <> } /> ); } export { HomeLayout }; export * from "@rspress/core/theme"; import "./index.css";