feat(ui): rework landing hero, drop stats band, add community configs#30
Merged
Conversation
Follow the updated OpenBoot Redesign design file (v3), a landing-page overhaul. Removes the GitHub-star stats band — which duplicated the header star badge — so stars now appear in one place. - hero: drop the badge pill and feature bullets; shorter title + one-line subtitle; inline install command; terminal-wider layout; staggered entrance animations; terminal demo timing/height/copy updated - remove the 4-up stats band (resolves the duplicate GitHub-star count) - how it works: drop the h2 (eyebrow only) and reveal the steps on scroll - new "community configs" section: server-loaded top 3 featured public configs as cards (name, cli/apps counts, package fingerprint, curl), with a "Browse all configs" link to /explore - new +page.server.ts loads the configs via getPublicConfigs and computes fingerprint counts server-side; hides the section if the DB is absent - scroll-reveal uses an IntersectionObserver action and respects prefers-reduced-motion (content stays visible, no animation) Verified hero/how-it-works/community in light and dark via Playwright. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
Follows the updated OpenBoot Redesign design file (v3) — a landing-page overhaul. It removes the GitHub-star stats band, which duplicated the header star badge, so the star count now lives in one place (the header).
Landing (
src/routes/+page.svelte, rewritten)> how it workseyebrow); steps reveal on scroll with a staggerNew (
src/routes/+page.server.ts)getPublicConfigsand computes fingerprint counts server-side (SSR, no layout shift). Returns an empty list — section hides — if the DB binding is absent.Deliberate adaptations (live app vs static mock)
IntersectionObserveraction instead of the mock's global scroll listener (same effect, self-contained)prefers-reduced-motion— content stays visible, no animation; no-JS degrades gracefully (SSR content visible)Test plan
npm run validatepasses (lint + type-check + tests + build); svelte-check 0 errors🤖 Generated with Claude Code