feat(web): replace /pricing with a /hire page - #161
Merged
Conversation
Modelled on crawlproof.com/hire: what the engagement delivers, how it runs, and an inquiry form. No rate card — the page states the floor ($400 for a scan with human input) and says the price moves with the complexity of the app, with a fixed number sent before work starts. /pricing is gone; every link that pointed at it (header, footer, sitemap, home, about, affiliates, account, Organization JSON-LD) now points at /hire, and the old URL 308s there so indexed links keep working. The form posts to the existing /api/contact route under topic "hire". That route only has columns for company and topic, so its persist hook now appends any other submitted field (app/repo, stack, timeline) to the stored message instead of dropping it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
| <div className="min-h-screen bg-tc-darker pt-24 pb-20"> | ||
| <script | ||
| type="application/ld+json" | ||
| dangerouslySetInnerHTML={{ __html: JSON.stringify(serviceJsonLd) }} |
| /> | ||
| <script | ||
| type="application/ld+json" | ||
| dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbJsonLd) }} |
ThreatCrush Security Scan65 finding(s) HIGH/CRITICAL: 4 | MEDIUM: 54 | LOW: 7
…and 15 more. Full results in the Security tab. Snippets are redacted; ThreatCrush never prints matched credential material. |
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.
Modelled on crawlproof.com/hire: what the engagement delivers, how it runs, and an inquiry form. No rate card — the page states the floor ($400 for a scan with human input) and says the price moves with the complexity of the app, with a fixed number sent before work starts.
/pricing is gone; every link that pointed at it (header, footer, sitemap, home, about, affiliates, account, Organization JSON-LD) now points at /hire, and the old URL 308s there so indexed links keep working.
The form posts to the existing /api/contact route under topic "hire". That route only has columns for company and topic, so its persist hook now appends any other submitted field (app/repo, stack, timeline) to the stored message instead of dropping it.