diff --git a/packages/docusaurus-theme-classic/src/theme/Layout/index.tsx b/packages/docusaurus-theme-classic/src/theme/Layout/index.tsx index 108f03e47d..1af3915bfa 100644 --- a/packages/docusaurus-theme-classic/src/theme/Layout/index.tsx +++ b/packages/docusaurus-theme-classic/src/theme/Layout/index.tsx @@ -7,6 +7,7 @@ import React from 'react'; import clsx from 'clsx'; +import SkipToContent from '@theme/SkipToContent'; import AnnouncementBar from '@theme/AnnouncementBar'; import Navbar from '@theme/Navbar'; import Footer from '@theme/Footer'; @@ -17,12 +18,17 @@ import './styles.css'; function Layout(props: Props): JSX.Element { const {children, noFooter, wrapperClassName} = props; + return ( + + + +
{children}
{!noFooter &&