Conversation
- Change all 'ベータ版 公開中' references to 'アルファテスト募集中' - Replace beta pricing (Solo ¥9,800 / Studio ¥29,800) with free alpha test - Remove Stripe test payment links, route all CTAs to cor-jp.com/contact/ - Mark unimplemented features (multi-provider, Go/No-Go, Linear/GitHub sync) as '開発予定' - Rewrite pricing page: alpha test card + development roadmap section - Update FAQ, contact, social proof, floating CTA, config files
sync: main to develop
fix: correct product stage from beta to alpha
There was a problem hiding this comment.
Pull request overview
Updates marketing copy across the site to reposition Grift from “beta pricing” to a “private alpha test” and removes/softens claims about multi-provider market research to match current alpha status, for the main-branch Cloudflare deployment.
Changes:
- Replaces pricing plans/pricing preview with a private alpha-test CTA and roadmap framing.
- Updates homepage, FAQ, and contact copy from “beta” to “alpha test” positioning.
- Updates announcement and trust-signal copy to remove “4 providers” wording.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/pages/pricing.astro | Replaces paid plan cards with a single alpha-test card + roadmap + updated FAQs/CTAs |
| src/pages/index.astro | Updates marketing claims and swaps pricing preview section into an alpha-test CTA |
| src/pages/faq.astro | Updates FAQ answers/questions to reflect alpha-test availability and capabilities |
| src/pages/contact.astro | Updates contact page copy to route alpha-test inquiries to Cor.inc form |
| src/config/content.ts | Updates announcement text to alpha-test messaging |
| src/config/contact.ts | Updates contact page FAQ copy to alpha-test messaging |
| src/components/sections/marketing/SocialProofSection.astro | Updates trust-signal and status badge text for alpha test |
| src/components/sections/marketing/FloatingCTA.astro | Updates floating CTA microcopy to alpha-test messaging |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -17,7 +17,7 @@ export const announcement: AnnouncementConfig = { | |||
| id: 'grift-beta-2026', | |||
There was a problem hiding this comment.
announcement.text now advertises the private alpha test, but the id is still grift-beta-2026. The inline comment says this ID is meant to identify/reset announcements, so it should be updated to match the new alpha messaging (e.g., grift-alpha-2026) when the announcement content changes.
| id: 'grift-beta-2026', | |
| id: 'grift-alpha-2026', |
| <MarketingLayout | ||
| title={`料金プラン — 受託開発・フリーランスのAI見積自動化 | ${siteConfig.name}`} | ||
| description="Grift の料金プラン。フリーランスのSolo Betaから受託チームのStudio Betaまで、AI見積自動化の導入費用と含まれる機能をご案内します。" | ||
| description="Grift の料金プラン。現在プライベートアルファテストを実施中。フリーランス・受託開発チームのAI見積自動化ツールを無料でお試しいただけます。" | ||
| faqItems={pricingFaqs} | ||
| > | ||
| <PageHeader | ||
| title="料金プラン" | ||
| subtitle="受託開発・フリーランスのAI見積自動化。チーム規模と案件数に合わせて選べる3つのプランをご用意しています。" | ||
| title="プライベートアルファテスト" | ||
| subtitle="現在アルファ開発中です。実際の案件でGriftを無料で試せるプライベートアルファテストにご招待します。" | ||
| /> |
There was a problem hiding this comment.
The page has been repurposed to describe the private alpha test, but the <MarketingLayout> title and description still frame this as a "料金プラン" page. This mismatch can be confusing in-page and in SEO/social previews; consider updating the title/description to align with the new alpha-test positioning (or keeping pricing info if the route must remain a pricing page).
| <p class="text-sm font-semibold text-text">市場相場の照合</p> | ||
| <p class="mt-2 text-sm text-text-muted text-pretty"> | ||
| Grok・Brave・Perplexity・Geminiが並列で調査。クロスバリデーションされた相場レンジを提示します。 | ||
| AIプロバイダが市場調査を実行。クロスバリデーションされた相場レンジを提示します。 |
There was a problem hiding this comment.
This block claims the market research output is "クロスバリデーションされた相場レンジ". Earlier on the page you state that the alpha is currently validating with a single provider. Please make these statements consistent (either soften/remove the cross-validation claim here, or update the earlier alpha-status wording).
| AIプロバイダが市場調査を実行。クロスバリデーションされた相場レンジを提示します。 | |
| AIプロバイダが市場調査を実行。市場調査にもとづく相場レンジを提示します。 |
| class="inline-flex items-center gap-2 rounded-full border border-primary/30 bg-primary/5 px-4 py-2 text-sm font-medium text-primary" | ||
| > | ||
| <span class="size-2 rounded-full bg-primary" aria-hidden="true"></span> | ||
| 現在、限定ベータとして提供中 | ||
| 現在、プライベートアルファテスト募集中 | ||
| </span> |
There was a problem hiding this comment.
This section now positions the product as an alpha test (see the updated badge text), but the file header docstring still describes this component as "beta stage" / "honest beta messaging". Please update the top-level comment so it matches the current alpha messaging to avoid future confusion.
Merge develop (alpha correction) to main for Cloudflare deployment.