diff --git a/src/components/Navigation.module.css b/src/components/Navigation.module.css
index 62f0625d..c735b468 100644
--- a/src/components/Navigation.module.css
+++ b/src/components/Navigation.module.css
@@ -2,7 +2,6 @@
display: flex;
width: 100%;
align-items: center;
- justify-content: space-between;
border-radius: 0.375rem;
text-align: left;
line-height: 1.5;
diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx
index 2ad85aa1..09580a7a 100644
--- a/src/components/Navigation.tsx
+++ b/src/components/Navigation.tsx
@@ -35,12 +35,9 @@ function ItemLink({
onClick={item.href ? onLinkClick : undefined}
className={clsx(styles.item, className, isSelected && styles.selected)}
>
-
- {item.title}
+
+ {item.title}
+
)
}
@@ -59,12 +56,17 @@ export function Navigation({
+
Quickstart Guide
{navigation.map((section) => {
@@ -84,6 +86,11 @@ export function Navigation({
section.href !== '' && pathname.includes(section.href),
)}
>
+
{section.title}