Add LSOOC subpage at /lsa from Claude Design handoff#29
Draft
michalptacnik wants to merge 4 commits into
Draft
Conversation
Implements the Liberland Sports & Olympic Committee (LSOOC) prototype as a third subdirectory (lsa-site/) following the existing per-site layout. Five hash-routed pages — Home, About & Governance, Sports & Federations, Clean Sport & Integrity, Support & Patrons — built with React + Babel served via local vendor scripts (same pattern as new-site/). Wires the new directory into the GitHub Pages deploy as /lsa, leaving the existing root (liberland-limited/) and /candidate (new-site/) deployments untouched.
Mirrors the GitHub Pages workflow: copies liberland-limited/ to the site root and mounts new-site/ at /candidate and lsa-site/ at /lsa, so PR deploy previews show all three sites at their final paths.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/lsa, implemented from a Claude Design handoff bundle.new-site/pattern).lsa-site/directory into the GitHub Pages deploy workflow as/lsa, leaving the root (liberland-limited/) and/candidate(new-site/) deploys untouched.Layout
lsa-site/index.html— entry, loads vendored React + Babel + the JSX moduleslsa-site/styles.css— design system (Stadium Dark, gold/black/paper, Olympic-color federation accents)lsa-site/js/{shell,home,about,sports,clean,support,app}.jsx— shared shell + 5 pages + hash routerlsa-site/tweaks-panel.jsx,lsa-site/assets/crest.svg— design-prototype helperslsa-site/vendor/— React 18 prod + Babel standalone (vendored, same asnew-site/)lsa-site/netlify.toml—publish = ".", mirroring sibling sitesNotes
liberland-limited/ornew-site/.Test plan
python3 -m http.server) loadsindex.html, alljs/*.jsx,styles.css, andvendor/*.js(200 OK).cp -r liberland-limited/. _site/ && cp -r new-site _site/candidate && cp -r lsa-site _site/lsaproduces_site/,_site/candidate/,_site/lsa/with all expected files.master, verifyhttps://liberland.org/lsa/(or the GH Pages URL) renders and hash-routes between the five pages.Generated by Claude Code