fix: correct product stage from beta to alpha#22
Conversation
fix: scroll animation not rendering — replace astro:page-load
fix: blank page regression, E2E test infrastructure, Stripe integration
- Replace "Claude AI" with "ローカルLLM + クラウド併用" to match actual BenevolentDirector v2 architecture (Qwen3.5 local + cloud fallback) - Broaden "代表" (CEO-only) copy to include experienced upstream engineers as estimate owners, emphasize black-box nature - Increase header logo from h-8 to h-10 for better visibility - Add .claude/ to .prettierignore to fix CI false positives Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ments fix: correct AI label, broaden persona, enlarge logo
- 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
There was a problem hiding this comment.
Pull request overview
LP上のプロダクト段階表記を「ベータ」から「アルファテスト募集」に寄せ、CTA導線をお問い合わせフォームへ集約することで、現状の提供状態に合わせたマーケティング訴求へ修正するPRです。
Changes:
- 各ページの「ベータ」表記を「プライベートアルファテスト」訴求へ更新し、未実装機能を「開発予定」として明示
- Stripeテスト決済導線を削除し、CTAリンクを
https://cor-jp.com/contact/に統一 - 料金ページをアルファテスト案内中心の構成に刷新(ロードマップセクション追加等)
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/pages/pricing.astro | 料金プラン表示を廃止し、プライベートアルファテスト案内+開発ロードマップに刷新 |
| src/pages/index.astro | ベータ訴求/料金プレビューをアルファテストCTAに差し替え、文言を開発中前提へ修正 |
| src/pages/faq.astro | FAQ文言をアルファテスト前提に更新(市場調査/提供形態の説明修正) |
| src/pages/contact.astro | お問い合わせ導線の説明をアルファテスト前提に更新 |
| src/config/content.ts | アナウンスバー文言をアルファテスト募集に更新 |
| src/config/contact.ts | Contactページ向けFAQ文言をアルファテスト前提に更新 |
| src/components/sections/marketing/SocialProofSection.astro | 信頼シグナル/ステージ文言をアルファテスト募集に更新 |
| src/components/sections/marketing/FloatingCTA.astro | フローティングCTAの文言をアルファテスト無料に更新 |
| src/components/sections/marketing/AgitationSection.astro | 一部コピーを中立化(「代表」→「特定の人」) |
| src/components/layout/Header.astro | ヘッダーロゴサイズを調整 |
| .prettierignore | .claude/ をフォーマット対象外に追加 |
💡 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 のIDが 'grift-beta-2026' のままだと、既にローカルストレージで dismiss 済みのユーザーには文言更新(アルファ告知)が表示されない可能性があります。ステージ変更に合わせてIDも更新して、告知内容変更時に確実に再表示されるようにしてください。
| 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} |
There was a problem hiding this comment.
ページ内容が「プライベートアルファテスト」中心になっているのに、HTMLタイトルが「料金プラン — ...」のままなので、検索結果/OGP/ブラウザタブで内容と不一致になります。タイトル(および必要なら description 冒頭)をアルファテスト募集に合わせた文言へ更新してください。
| <a | ||
| href={item.href} | ||
| target={item.name === 'Custom' ? '_blank' : undefined} | ||
| rel={item.name === 'Custom' ? 'noreferrer' : undefined} | ||
| href="https://cor-jp.com/contact/" | ||
| target="_blank" | ||
| rel="noreferrer" |
There was a problem hiding this comment.
alphaTestInfo を map しているのに、リンク先が item 側のデータではなく常に固定 URL になっています(以前は item.href を使っていたため、構造が中途半端になっています)。contactUrl 定数を定義して参照するか、alphaTestInfo に href を持たせて item.href を使う形に統一してください。
| <div class="inline-flex flex-wrap items-center gap-2 text-sm font-medium text-primary"> | ||
| <span class="size-2 rounded-full bg-primary" aria-hidden="true"></span> | ||
| ベータ版 公開中 | ||
| アルファテスト募集中 | ||
| <span class="text-text-muted">フリーランス・受託開発チーム向けAI見積ツール</span> |
There was a problem hiding this comment.
PR説明では「全ページの『ベータ』表記を『アルファテスト募集中』に変更」とありますが、リポジトリ内にまだ『ベータ』表記が残っています(例: src/config/navigation.ts の『ベータ料金』、src/pages/terms.astro / privacy.astro の複数箇所、src/config/content.ts の newsletter 文言など)。スコープが「LP主要ページのみ」なら説明を修正、全ページ対応が目的なら残りの箇所も更新してください。
Summary
Files changed (8 files)