Feature/design overhaul#92
Conversation
- Neutralize root color vars and gray scale to pure grayscale (drop purple/blue tint) - Remove dark-mode bootstrap script from app.html - Drop svelte/no-navigation-without-resolve eslint override - Update README for svelte kit + pnpm
Feature/design overhaul
- ThemeToggle: derive isDark from mode-watcher's reactive mode and use setMode() instead of writing to a $derived / calling toggleMode() - Default ModeWatcher to dark with track disabled (dark-only intent) - Wrap integration/game thumbnails in asset() for base-path correctness - Satisfy svelte/no-navigation-without-resolve: resolve() for internal links, bare fragments for home anchors, rel=external for IntegrationCard - prettier formatting
- Rebuild IntegrationCard on shadcn Card + Badge with theme tokens - Extract reusable GameCard from duplicated game-card markup - Use shadcn Input/Button across the integrations page; fix hero top spacing - Add vendored shadcn input + badge primitives - Make AppHeader nav data-driven (single navLinks array) for desktop + mobile - Tidy mobile menu (tokens, missing Desktop link, backdrop, pointer-events) - Add lucide icons to nav items; cluster icon-only utilities + theme toggle - Tokenize ThemeToggle colors
Deploying openshock-org with
|
| Latest commit: |
01207d0
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://93b09753.openshock-org.pages.dev |
| Branch Preview URL: | https://feature-design-overhaul.openshock-org.pages.dev |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 555a92c6ef
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "overrides": { | ||
| "cookie@<0.7.0": ">=0.7.0" | ||
| } | ||
| "node": ">=26.3.0" |
There was a problem hiding this comment.
Keep CI on a supported Node version
In the GitHub Actions workflow I inspected, .github/workflows/ci-build.yml still runs pnpm install under node-version: 25.2.0, but this change raises the root project engine to >=26.3.0. pnpm 11 treats an incompatible project engines.node as a hard install failure, so CI will stop at dependency installation until the workflow is updated to Node 26.3+ or the engine range is lowered.
Useful? React with 👍 / 👎.
No description provided.