-
- Magic Civilization
- {onOpenSettings && (
-
- ⚙
-
- )}
-
- {NAV.map((group) => (
-
-
- {group.title}
- {group.items.map((item) => {
- if (item.to === '/early-access') {
- return (
-
-
- Progress
-
- )
- }
- if (item.to === '/climate/simulation') {
- return (
-
-
- {item.icon}
- {item.label}
-
-
- ⧉
-
- )
- }
- return (
-
- )
- })}
-
- ))}
-
- )
-}
diff --git a/guide/age-of-four/src/components/toc/TocEntry.tsx b/guide/age-of-four/src/components/toc/TocEntry.tsx
deleted file mode 100644
index 0d70225a..00000000
--- a/guide/age-of-four/src/components/toc/TocEntry.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import type { ReactElement } from 'react'
-import { TocLink, TocIcon } from './toc-styles'
-
-interface Props {
- to: string
- icon: string
- label: string
- end?: boolean
-}
-
-export function TocEntry({ to, icon, label, end }: Props): ReactElement {
- return (
-