Skip to content

fix: correct product stage from beta to alpha#20

Closed
terisuke wants to merge 4 commits into
developfrom
fix/copy-and-logo-refinements
Closed

fix: correct product stage from beta to alpha#20
terisuke wants to merge 4 commits into
developfrom
fix/copy-and-logo-refinements

Conversation

@terisuke

Copy link
Copy Markdown
Contributor

Summary

  • Grift (BenevolentDirector) はアルファ開発段間(進捗66%、法律ドキュメント0%)なのにLPが「ベータ版公開中」と誤表示されていたのを修正
  • 全ページの「ベータ」表記を「アルファテスト募集中」に変更
  • Stripeテスト決済リンク(機能しない)を削除し、全CTAを cor-jp.com/contact/ に集約
  • 未実装機能(4プロバイダ並列、Go/No-Go、Linear/GitHub同期)を「開発予定」に明示
  • 価格ページを「プライベートアルファテスト(無料)」に変更し、開発ロードマップセクションを追加

Files changed (8 files, +159 -176)

  • src/pages/index.astro — Hero, 価格セクション, FAQ, 機能説明
  • src/pages/pricing.astro — フルリライト: アルファテストカード + ロードマップ
  • src/pages/faq.astro — ベータ→アルファ表記
  • src/pages/contact.astro — ベータ→アルファ表記
  • src/config/content.ts — アナウンスメントバー
  • src/config/contact.ts — FAQ
  • src/components/sections/marketing/SocialProofSection.astro — ステータスバッジ
  • src/components/sections/marketing/FloatingCTA.astro — テキスト修正

CI

  • npm run check ✅ (lint + format + astro check)
  • npm run build ✅ (9 pages built)

terisuke and others added 4 commits March 12, 2026 09:21
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>
- Change all 'ベータ版 公開中' references to 'アルファテスト募集中'
- Replace beta pricing (Solo ¥9,800 / Studio ¥29,800) with free alpha test program
- Remove Stripe test payment links, route all CTAs to cor-jp.com/contact/
- Mark unimplemented features (multi-provider market research, Go/No-Go scoring, Linear/GitHub sync) as '開発予定'
- Update pricing page to alpha test card + development roadmap
- Update FAQ, contact, social proof, and floating CTA sections accordingly
Copilot AI review requested due to automatic review settings April 21, 2026 15:35

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the Grift marketing site to reflect the product’s current stage (alpha), removing beta-era pricing/payment messaging and consolidating CTAs to the contact form.

Changes:

  • Replaces “ベータ” messaging with “プライベートアルファテスト” across key pages and sections.
  • Reworks the pricing page into a free private alpha card plus a planned roadmap section, and removes Stripe test payment links.
  • Updates supporting UI copy (social proof badges, floating CTA, header sizing) and adds .claude/ to Prettier ignore.

Reviewed changes

Copilot reviewed 11 out of 11 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
src/pages/index.astro Updates hero/feature/pricing-preview copy and routes CTAs to the contact page.
src/pages/pricing.astro Replaces paid plan grid with a private alpha card, roadmap, and updated FAQs/CTA.
src/pages/faq.astro Updates FAQ copy from beta to alpha-test messaging and adjusts feature descriptions.
src/pages/contact.astro Updates contact page copy to reflect alpha-test intake messaging.
src/config/content.ts Updates announcement text/link to alpha-test recruiting.
src/config/contact.ts Updates contact FAQ copy to align with alpha-test stage.
src/components/sections/marketing/SocialProofSection.astro Updates status badge + tech signal labels for alpha positioning.
src/components/sections/marketing/FloatingCTA.astro Updates floating CTA helper text for alpha-test messaging.
src/components/sections/marketing/AgitationSection.astro Neutralizes wording (“代表” → “特定の人”) for broader applicability.
src/components/layout/Header.astro Increases logo/icon sizes in header.
.prettierignore Adds .claude/ to ignored paths.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread src/config/content.ts
@@ -17,7 +17,7 @@ export const announcement: AnnouncementConfig = {
id: 'grift-beta-2026',

Copilot AI Apr 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

announcement.text was updated to an alpha-test message, but the announcement id is still grift-beta-2026. Since the ID is used to control dismissal state (and the comment above says to change it to reset), keeping the old beta ID will prevent previously-dismissed users from seeing the new announcement. Update the ID to a new value that reflects this announcement revision (e.g., alpha + date/version).

Suggested change
id: 'grift-beta-2026',
id: 'grift-alpha-2026',

Copilot uses AI. Check for mistakes.
Comment thread src/pages/pricing.astro
<a
href={contactUrl}
target="_blank"
rel="noreferrer"

Copilot AI Apr 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Links opened with target="_blank" should include rel="noopener noreferrer" (not just noreferrer) to prevent window.opener tabnabbing issues. Please update the rel value for this external CTA link.

Suggested change
rel="noreferrer"
rel="noopener noreferrer"

Copilot uses AI. Check for mistakes.
Comment thread src/pages/pricing.astro
<a
href={contactUrl}
target="_blank"
rel="noreferrer"

Copilot AI Apr 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Links opened with target="_blank" should include rel="noopener noreferrer" (not just noreferrer) to prevent window.opener tabnabbing issues. Please update the rel value for this external CTA link.

Suggested change
rel="noreferrer"
rel="noopener noreferrer"

Copilot uses AI. Check for mistakes.
Comment thread src/pages/index.astro
Comment on lines +440 to +442
href="https://cor-jp.com/contact/"
target="_blank"
rel="noreferrer"

Copilot AI Apr 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link opens a new tab via target="_blank" but uses rel="noreferrer" only. For protection against tabnabbing via window.opener, please switch to rel="noopener noreferrer".

Copilot uses AI. Check for mistakes.
Comment thread src/pages/index.astro
Comment on lines +454 to +456
href="https://cor-jp.com/contact/"
target="_blank"
rel="noreferrer"

Copilot AI Apr 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This CTA opens a new tab via target="_blank" but uses rel="noreferrer" only. For protection against tabnabbing via window.opener, please switch to rel="noopener noreferrer".

Copilot uses AI. Check for mistakes.
@terisuke terisuke closed this Apr 21, 2026
@terisuke terisuke deleted the fix/copy-and-logo-refinements branch April 21, 2026 15:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants