This repository was archived by the owner on Dec 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 font-family : 'Audiowide' , cursive;
2020}
2121
22- .main-wrapper {
23- display : flex;
24- }
25-
2622/* For readability concerns, you should choose a lighter palette in dark mode. */
2723[data-theme = 'dark' ] {
2824 --docusaurus-highlighted-code-line-bg : rgba (0 , 0 , 0 , 0.3 );
Original file line number Diff line number Diff line change 11import React from 'react'
2- import Layout from '@theme/Layout'
2+ // import Layout from '@theme/Layout'
3+ import clsx from 'clsx'
4+ import ErrorBoundary from '@docusaurus/ErrorBoundary'
5+ import { PageMetadata , ThemeClassNames } from '@docusaurus/theme-common'
6+ import { useKeyboardNavigation } from '@docusaurus/theme-common/internal'
7+ import SkipToContent from '@theme/SkipToContent'
8+ import AnnouncementBar from '@theme/AnnouncementBar'
9+ import Navbar from '@theme/Navbar'
10+ import Footer from '@theme/Footer'
11+ import LayoutProvider from '@theme/Layout/Provider'
12+ import ErrorPageContent from '@theme/ErrorPageContent'
13+ import type { Props } from '@theme/Layout'
314import HomepageHeader from '../components/Home/Header'
415
516export default function Home ( ) {
17+ useKeyboardNavigation ( )
18+
619 return (
7- < Layout >
8- < HomepageHeader />
9- </ Layout >
20+ < LayoutProvider >
21+ < PageMetadata />
22+
23+ < SkipToContent />
24+
25+ < AnnouncementBar />
26+
27+ < Navbar />
28+
29+ < ErrorBoundary fallback = { ( params ) => < ErrorPageContent { ...params } /> } >
30+ < HomepageHeader />
31+ </ ErrorBoundary >
32+
33+ < Footer />
34+ </ LayoutProvider >
1035 )
1136}
You can’t perform that action at this time.
0 commit comments