+ );
+}
diff --git a/packages/dev/s2-docs/pages/index.mdx b/packages/dev/s2-docs/pages/index.mdx
index 4d27ba3323c..e8578e91c72 100644
--- a/packages/dev/s2-docs/pages/index.mdx
+++ b/packages/dev/s2-docs/pages/index.mdx
@@ -1,14 +1,15 @@
import {Layout} from '../src/Layout';
-import {LinkButton} from '@react-spectrum/s2';
+import {WelcomeHeader, LibraryCards} from './WelcomeHeader';
export default Layout;
export const section = 'Getting started';
+export const hideNav = true;
-# Welcome!
+
The React Spectrum docs have a new look! This is a **beta preview** so keep in mind that we will be continuing to make improvements before the full release.
-Get Started with Spectrum 2
+
## What's new?
@@ -22,4 +23,4 @@ The React Spectrum docs have a new look! This is a **beta preview** so keep in m
## Roadmap
-The existing docs are still available [here](https://react-spectrum.adobe.com/react-spectrum/index.html). We plan to do a full release of the new docs site by early 2026, so we welcome any and all feedback!
+The existing docs are still available [here](https://react-spectrum.adobe.com/index.html). We plan to do a full release of the new docs site by early 2026, so we welcome any and all feedback!
diff --git a/packages/dev/s2-docs/src/Layout.tsx b/packages/dev/s2-docs/src/Layout.tsx
index 66ba59a9936..d408c529322 100644
--- a/packages/dev/s2-docs/src/Layout.tsx
+++ b/packages/dev/s2-docs/src/Layout.tsx
@@ -101,7 +101,7 @@ let articleStyles = style({
export function Layout(props: PageProps & {children: ReactElement}) {
let {pages, currentPage, children} = props;
- let hasToC = currentPage.tableOfContents?.[0]?.children && currentPage.tableOfContents[0].children.length > 0;
+ let hasToC = !currentPage.exports?.hideNav && currentPage.tableOfContents?.[0]?.children && currentPage.tableOfContents?.[0]?.children?.length > 0;
return (
@@ -150,7 +150,7 @@ export function Layout(props: PageProps & {children: ReactElement}) {
pages={pages}
currentPage={currentPage} />