Update GitHub Pages docs target URL

Completed on May 23, 2026.

Summary

Updated the GitHub Pages workflow so the generated root landing page now redirects explicitly to https://dirtydishes.github.io/islandflow/docs/.

Changes Made

Context

The existing docs Pages workflow already copied repository docs into site/docs/. The requested update was to ensure the published root route consistently forwards to the canonical project URL dirtydishes.github.io/islandflow/docs.

Important Implementation Details

Relevant Diff Snippets

Snippet style follows diffs.com formatting conventions.

--- .github/workflows/docs-pages.yml
+++ .github/workflows/docs-pages.yml
@@
-printf '%s\n' '<!doctype html>... url=./docs/...<a href="./docs/">Continue to docs</a>' > site/index.html
+printf '%s\n' '<!doctype html>... url=https://dirtydishes.github.io/islandflow/docs/...<a href="https://dirtydishes.github.io/islandflow/docs/">Continue to docs</a>' > site/index.html

Expected Impact for End-Users

Validation

Issues, Limitations, and Mitigations

Follow-up Work