Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ export default defineConfig({
// Legacy Jekyll URLs (permalink: /:title/, slug from filename) → new
// title-derived slugs under /blog/. Keeps inbound links alive post-migration.
redirects: {
// Galaxy explorer view relocated from /explore/galaxy/ to /map/.
'/explore/galaxy/': '/map/',
'/map/tree/': '/map/',
'/cypherpunk-institutional-privacy': '/blog/cypherpunk-x-institutional-privacy/',
'/building-private-bonds-on-ethereum': '/blog/building-private-bonds-on-ethereum/',
'/public-rails-vs-private-ledgers': '/blog/public-rails-vs-private-ledgers/',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/explore/browse.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const description =

<div class="explore-nav">
<div class="container">
<a href="/explore/galaxy/" class="explore-tab">Galaxy</a>
<a href="/map/" class="explore-tab">Galaxy</a>
<a href="/explore/tree/" class="explore-tab">Tree</a>
<a href="/explore/browse/" class="explore-tab active">Browse</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/explore/tree.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const description =

<div class="explore-nav">
<div class="container">
<a href="/explore/galaxy/" class="explore-tab">Galaxy</a>
<a href="/map/" class="explore-tab">Galaxy</a>
<a href="/explore/tree/" class="explore-tab active">Tree</a>
<a href="/explore/browse/" class="explore-tab">Browse</a>
</div>
Expand Down
14 changes: 7 additions & 7 deletions src/pages/explore/galaxy.astro → src/pages/map.astro
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
/*
* /explore/galaxy/ — full-viewport d3 force graph of all 135 nodes.
* /map/ — full-viewport d3 force graph of all 135 nodes.
* React island, light theme. Uses our NavBar but the canvas spans
* full width below it.
* full width below it. (Formerly /explore/galaxy/; redirected in astro.config.)
*/
import BaseLayout from '../../layouts/BaseLayout.astro';
import PageHeader from '../../components/PageHeader.astro';
import { Galaxy } from '../../components/explore/Galaxy';
import graphData from '../../data/graph.json';
import BaseLayout from '../layouts/BaseLayout.astro';
import PageHeader from '../components/PageHeader.astro';
import { Galaxy } from '../components/explore/Galaxy';
import graphData from '../data/graph.json';

const description =
'Force-directed map of every entry on the site. Drag, zoom, click to drill into any node: patterns, approaches, vendors, use cases, jurisdictions.';
Expand All @@ -34,7 +34,7 @@ const description =

<div class="explore-nav">
<div class="container">
<a href="/explore/galaxy/" class="explore-tab active">Galaxy</a>
<a href="/map/" class="explore-tab active">Galaxy</a>
<a href="/explore/tree/" class="explore-tab">Tree</a>
<a href="/explore/browse/" class="explore-tab">Browse</a>
</div>
Expand Down
Loading