Add GitHub Pages landing site - #112
Merged
Merged
Conversation
Reviewer's GuideAdds a static marketing landing page under site/ and configures an official GitHub Pages Actions workflow to deploy it from the main branch. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
josephsenior
marked this pull request as ready for review
July 28, 2026 22:06
josephsenior
enabled auto-merge
July 28, 2026 22:06
There was a problem hiding this comment.
Hey - I've found 1 issue, and left some high level feedback:
- The landing page hard-codes multiple full GitHub URLs (including
og:urland all CTAs) tojosephsenior/Grinta-Coding-Agent, which will be misleading for forks or repo moves; consider using relative URLs or a single configurable base URL to avoid future breakage. - The demo link in the hero section points to a specific versioned asset (
releases/download/v1.0.0/grinta_raft.mp4); you may want to point to the latest release or a stable asset path to avoid the page drifting out of date as new releases are published.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The landing page hard-codes multiple full GitHub URLs (including `og:url` and all CTAs) to `josephsenior/Grinta-Coding-Agent`, which will be misleading for forks or repo moves; consider using relative URLs or a single configurable base URL to avoid future breakage.
- The demo link in the hero section points to a specific versioned asset (`releases/download/v1.0.0/grinta_raft.mp4`); you may want to point to the latest release or a stable asset path to avoid the page drifting out of date as new releases are published.
## Individual Comments
### Comment 1
<location path="site/index.html" line_range="31" />
<code_context>
+ .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
+ .button { background: var(--accent); border: 1px solid var(--accent); border-radius: 8px; color: white; font-weight: 750; padding: 11px 16px; text-decoration: none; }
+ .button.secondary { background: transparent; border-color: var(--line); color: var(--text); }
+ .evidence { border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface) 87%, transparent); margin: 0 0 72px; padding: 26px; }
+ .evidence strong { color: var(--accent-soft); }
+ .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
</code_context>
<issue_to_address>
**suggestion:** Consider a fallback for browsers that don't support `color-mix()`.
Older browsers that don’t support `color-mix()` will ignore this rule. Add a plain `background: var(--surface);` before the `color-mix()` declaration so they get a reasonable background while newer browsers use the enhanced style.
```suggestion
.evidence { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); background: color-mix(in srgb, var(--surface) 87%, transparent); margin: 0 0 72px; padding: 26px; }
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
| .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; } | ||
| .button { background: var(--accent); border: 1px solid var(--accent); border-radius: 8px; color: white; font-weight: 750; padding: 11px 16px; text-decoration: none; } | ||
| .button.secondary { background: transparent; border-color: var(--line); color: var(--text); } | ||
| .evidence { border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface) 87%, transparent); margin: 0 0 72px; padding: 26px; } |
There was a problem hiding this comment.
suggestion: Consider a fallback for browsers that don't support color-mix().
Older browsers that don’t support color-mix() will ignore this rule. Add a plain background: var(--surface); before the color-mix() declaration so they get a reasonable background while newer browsers use the enhanced style.
Suggested change
| .evidence { border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface) 87%, transparent); margin: 0 0 72px; padding: 26px; } | |
| .evidence { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); background: color-mix(in srgb, var(--surface) 87%, transparent); margin: 0 0 72px; padding: 26px; } |
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.
What changed
Why
The repository has strong technical proof and a polished README; this gives it a stable, shareable URL for search and social distribution.
Validation
Summary by Sourcery
Add a static marketing landing page and configure automated deployment to GitHub Pages.
New Features:
Deployment: