| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import { LlmsContainer, LlmsCopyButton, LlmsViewOptions } from '@rspress/plugin-llms/runtime';
- import {
- HomeLayout as BaseHomeLayout,
- getCustomMDXComponent as basicGetCustomMDXComponent,
- } from '@rspress/core/theme';
- import { NoSSR, useDark } from '@rspress/core/runtime';
- import { Background } from './components/background';
- import './theme.css';
- import { FlowGramLogo } from './components/logo';
- import { useIsMobile } from './use-is-mobile';
- function getCustomMDXComponent() {
- const { h1: H1, ...components } = basicGetCustomMDXComponent();
- const MyH1 = ({ ...props }) => (
- <>
- <H1 {...props} />
- <LlmsContainer>
- <LlmsCopyButton />
- <LlmsViewOptions />
- </LlmsContainer>
- </>
- );
- return {
- ...components,
- h1: MyH1,
- };
- }
- function HomeLayout(props: Parameters<typeof BaseHomeLayout>[0]) {
- const isDark = useDark();
- const isMobile = useIsMobile();
- return (
- <>
- <div className="home-layout-container">
- <NoSSR>
- {isDark && !isMobile && <Background />}
- <FlowGramLogo />
- </NoSSR>
- <BaseHomeLayout {...props} afterHero={null} afterHeroActions={null} />
- </div>
- </>
- );
- }
- export { getCustomMDXComponent, HomeLayout };
- export * from '@rspress/core/theme';
|