mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-15 20:34:56 +02:00
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import React from 'react';
|
|
import clsx from 'clsx';
|
|
import ErrorBoundary from '@docusaurus/ErrorBoundary';
|
|
import {
|
|
PageMetadata,
|
|
SkipToContentFallbackId,
|
|
ThemeClassNames,
|
|
} from '@docusaurus/theme-common';
|
|
import {useKeyboardNavigation} from '@docusaurus/theme-common/internal';
|
|
import SkipToContent from '@theme/SkipToContent';
|
|
import AnnouncementBar from '@theme/AnnouncementBar';
|
|
import Navbar from '@theme/Navbar';
|
|
import Footer from '@theme/Footer';
|
|
import LayoutProvider from '@theme/Layout/Provider';
|
|
import ErrorPageContent from '@theme/ErrorPageContent';
|
|
import styles from './styles.module.css';
|
|
export default function Layout(props) {
|
|
const {
|
|
children,
|
|
noFooter,
|
|
wrapperClassName,
|
|
// Not really layout-related, but kept for convenience/retro-compatibility
|
|
title,
|
|
description,
|
|
} = props;
|
|
useKeyboardNavigation();
|
|
return (
|
|
<LayoutProvider>
|
|
<PageMetadata title={title} description={description} />
|
|
|
|
<SkipToContent />
|
|
|
|
<AnnouncementBar />
|
|
|
|
<Navbar />
|
|
|
|
<div
|
|
id={SkipToContentFallbackId}
|
|
className={clsx(
|
|
ThemeClassNames.wrapper.main,
|
|
styles.mainWrapper,
|
|
wrapperClassName,
|
|
)}>
|
|
<ErrorBoundary fallback={(params) => <ErrorPageContent {...params} />}>
|
|
{children}
|
|
</ErrorBoundary>
|
|
</div>
|
|
|
|
{!noFooter && <Footer />}
|
|
</LayoutProvider>
|
|
);
|
|
}
|