diff --git a/app/components/AppShell.tsx b/app/components/AppShell.tsx index 4a39ba2..b5cea20 100644 --- a/app/components/AppShell.tsx +++ b/app/components/AppShell.tsx @@ -93,7 +93,7 @@ const styles: Record = { borderRadius: 999, padding: '1px 6px', }, - // Pinned below the sliding panes so Status/Support/Docs/Upgrades/Blog stay put + // Pinned below the sliding panes so Upgrades/Docs/Status/Support/Blog stay put // when a section sub-nav slides in. The switch sits on the last row beside Blog. sidebarFooter: { display: 'flex', @@ -574,6 +574,16 @@ function SidebarContent({ dark, onToggleTheme, onNavigate, hideBrand }: SidebarC Upgrades + + + + + + + + Docs + + @@ -594,32 +604,18 @@ function SidebarContent({ dark, onToggleTheme, onNavigate, hideBrand }: SidebarC Support - + - - + + - Docs + Blog -
- - - - - - - - Blog - - - {/* `role="switch"` rather than a plain button: the control reports a state - rather than firing an action, so screen readers announce "on"/"off" - against a stable label instead of the label itself changing. The switch - renders bare, so that name comes from `aria-label` — the visible track - is decorative and hidden from the tree. */} +
+ Developer Console
@@ -89,56 +70,22 @@ export default async function Home() { {mainnetSnapshot ? ( -
-
- Sync a Node Faster - - Grab the latest Base Mainnet archive snapshot, or customize your own. - +
+
+
+ Snapshots + + Sync a node from the latest Base Mainnet archive snapshot, or customize your own. + +
+
) : null} -
- Explore -
- {SURFACES.map((surface) => ( - - ))} -
-
); } - -function SurfaceCard({ surface }: { surface: Surface }) { - if (!surface.enabled) { - return ( - -
- {surface.label} - - Soon - -
- - {surface.description} - -
- ); - } - - return ( - - {surface.label} - - {surface.description} - - - ); -} diff --git a/app/snapshots/SnapshotDownloadBox.tsx b/app/snapshots/SnapshotDownloadBox.tsx index ca6f7a5..3344d09 100644 --- a/app/snapshots/SnapshotDownloadBox.tsx +++ b/app/snapshots/SnapshotDownloadBox.tsx @@ -1,4 +1,3 @@ -import { Button } from '../components/ui/Button'; import { Card } from '../components/ui/Card'; import { CommandLine } from '../components/ui/CommandLine'; import { Text } from '../components/ui/Text'; @@ -25,34 +24,23 @@ export function SnapshotDownloadBox({ snapshot }: { snapshot: Snapshot }) {
Mainnet Archive - - Full historical data + + Full Historical Data
{stats.map((stat) => (
- + {stat.label} - {stat.value} + {stat.value}
))}
-
- - -
+
); } diff --git a/app/vibenet/demos/DemoCard.tsx b/app/vibenet/demos/DemoCard.tsx index 48487e4..38a4ed6 100644 --- a/app/vibenet/demos/DemoCard.tsx +++ b/app/vibenet/demos/DemoCard.tsx @@ -1,3 +1,5 @@ +import Image from 'next/image'; + import { Card, LinkCard } from '../../components/ui/Card'; import { cn } from '../../components/ui/cn'; import { Text } from '../../components/ui/Text'; @@ -33,6 +35,9 @@ export function DemoCard({ demo, className }: { demo: DemoEntry; className?: str function DemoCardBody({ demo }: { demo: DemoEntry }) { return ( <> + {demo.icon && ( + + )}
{demo.title} @@ -42,7 +47,7 @@ function DemoCardBody({ demo }: { demo: DemoEntry }) { ) : null}
- + {demo.summary}
diff --git a/app/vibenet/demos/_shared/DemoGate.tsx b/app/vibenet/demos/_shared/DemoGate.tsx index 9d40b7b..db5ac81 100644 --- a/app/vibenet/demos/_shared/DemoGate.tsx +++ b/app/vibenet/demos/_shared/DemoGate.tsx @@ -44,9 +44,9 @@ export function DemoGate({ return (
- - {title} - + + {title} + {description}