Fix docsearch style

This commit is contained in:
DefectingCat
2023-03-20 16:14:07 +08:00
parent f0f9e620b5
commit b9f7d0da4a
7 changed files with 22 additions and 10 deletions

View File

@ -1,9 +1,9 @@
import 'styles/globals.css';
import '@docsearch/css/dist/style.css';
import RUAThemeProvider from './theme-provider';
export const metadata = {
title: 'RUA',
};
import HeadBar from 'components/nav-bar';
import Footer from 'components/footer';
import BackToTop from 'components/common/back-to-top';
export default function RootLayout({
children,
@ -22,7 +22,10 @@ export default function RootLayout({
/>
</head>
<body>
<HeadBar />
<RUAThemeProvider>{children}</RUAThemeProvider>
<Footer />
<BackToTop />
</body>
</html>
);