feat: update website layout#218
Open
T-1234567890 wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR refreshes the Orchestrana marketing site layout, introducing a new landing-page structure and consolidating “legal document” pages onto shared CSS, while adjusting client-side behavior for GitHub-powered widgets.
Changes:
- Redesign the homepage structure (hero/video, editorial sections, pricing, open-source, sponsor, footer) and update navigation labels/anchors.
- Rework legal/policy pages to use the new shared header and shared styling (removing large inline
<style>blocks). - Update
script.jsbehavior for GitHub-driven widgets (local preview gating) and switch acknowledgements to load from markdown viamarked.
Reviewed changes
Copilot reviewed 7 out of 19 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| website/index.html | New landing-page layout, sections, and footer; updated metadata and navigation. |
| website/style.css | Large CSS overhaul for the new landing + legal-document redesign and responsive behavior. |
| website/script.js | Adds “live GitHub” gating and updates contributor ribbon placeholders / status copy. |
| website/policies.html | New legal hub header/layout and simplified policy-card markup. |
| website/privacy.html | Updated header/nav and removed inline styling in favor of shared CSS. |
| website/terms.html | Updated header/nav and removed inline styling in favor of shared CSS. |
| website/comparison.html | Updated header/nav + new comparison hero/summary layout; pricing panel markup tweaks. |
| website/acknowledgements.html | Switches to loading acknowledgements from markdown using marked + runtime fetch. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
144
to
148
| const REPO_NAME = 'pomodoro-app'; | ||
| const LIVE_GITHUB_ENABLED = /^https?:$/.test(window.location.protocol) | ||
| && !['127.0.0.1', 'localhost'].includes(window.location.hostname); | ||
| const RIBBON_INVITE_URL = `https://github.com/${REPO_OWNER}/${REPO_NAME}`; | ||
| const RIBBON_CACHE_KEY = 'pomodoro-ribbon-users-v1'; |
| .policies-shell, | ||
| .ack-shell, | ||
| .comparison-page { | ||
| width: min(100% - 28px, var(--container)); |
Comment on lines
+66
to
+70
| headerIds: true, | ||
| mangle: false | ||
| }); | ||
| contentEl.innerHTML = marked.parse(markdownText); | ||
| } catch (err) { |
Comment on lines
+145
to
+146
| const LIVE_GITHUB_ENABLED = /^https?:$/.test(window.location.protocol) | ||
| && !['127.0.0.1', 'localhost'].includes(window.location.hostname); |
|
|
||
| .ai-editorial, | ||
| .open-atelier { | ||
| width: min(100% - 40px, 1180px); |
| body.legal-document .policies-shell, | ||
| body.legal-document .ack-shell, | ||
| body.legal-document .comparison-page { | ||
| width: min(100% - 28px, 1180px); |
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.
No description provided.