import { useI18n, useSite } from '@rspress/core/runtime'; import { EditLink, LlmsCopyRow, LlmsOpenRow, ReadPercent, Toc, } from '@rspress/core/theme'; import './index.scss'; import { ScrollToTop } from './ScrollToTop'; export function Outline() { const t = useI18n(); const { site: { themeConfig: { enableScrollToTop = true, llmsUI }, }, } = useSite(); const placement = typeof llmsUI === 'object' ? (llmsUI?.placement ?? 'title') : 'title'; return (