diff --git a/docs-ui/src/app/(docs)/layout.module.css b/docs-ui/src/app/(docs)/layout.module.css
deleted file mode 100644
index a4ea17aaac..0000000000
--- a/docs-ui/src/app/(docs)/layout.module.css
+++ /dev/null
@@ -1,5 +0,0 @@
-.pageContainer {
- width: 100%;
- max-width: 960px;
- margin: 0 auto;
-}
diff --git a/docs-ui/src/app/(docs)/layout.tsx b/docs-ui/src/app/(docs)/layout.tsx
deleted file mode 100644
index e136fd64f2..0000000000
--- a/docs-ui/src/app/(docs)/layout.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import type { Metadata } from 'next';
-
-import styles from './layout.module.css';
-
-export const metadata: Metadata = {
- title: 'Backstage UI',
- description: 'UI library for Backstage',
-};
-
-export default function DocsLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return
{children}
;
-}
diff --git a/docs-ui/src/app/(docs)/about/page.mdx b/docs-ui/src/app/about/page.mdx
similarity index 100%
rename from docs-ui/src/app/(docs)/about/page.mdx
rename to docs-ui/src/app/about/page.mdx
diff --git a/docs-ui/src/app/(docs)/changelog/page.mdx b/docs-ui/src/app/changelog/page.mdx
similarity index 100%
rename from docs-ui/src/app/(docs)/changelog/page.mdx
rename to docs-ui/src/app/changelog/page.mdx
diff --git a/docs-ui/src/app/(docs)/components/[slug]/page.tsx b/docs-ui/src/app/components/[slug]/page.tsx
similarity index 100%
rename from docs-ui/src/app/(docs)/components/[slug]/page.tsx
rename to docs-ui/src/app/components/[slug]/page.tsx
diff --git a/docs-ui/src/app/layout.module.css b/docs-ui/src/app/layout.module.css
index e7d9281c38..7399fc2485 100644
--- a/docs-ui/src/app/layout.module.css
+++ b/docs-ui/src/app/layout.module.css
@@ -13,6 +13,12 @@
border-radius: 0.5rem;
}
+.content {
+ width: 100%;
+ max-width: 960px;
+ margin: 0 auto;
+}
+
@media (min-width: 768px) {
.container {
width: calc(100% - 332px - 40px);
diff --git a/docs-ui/src/app/layout.tsx b/docs-ui/src/app/layout.tsx
index 697f990587..58decbf22b 100644
--- a/docs-ui/src/app/layout.tsx
+++ b/docs-ui/src/app/layout.tsx
@@ -51,7 +51,9 @@ export default async function RootLayout({
- {children}
+