Skip to content

website: rewrite in brand voice + deploy at offgridmobileai.co apex#390

Merged
alichherawalla merged 1 commit into
mainfrom
website/deploy-to-apex
Jun 14, 2026
Merged

website: rewrite in brand voice + deploy at offgridmobileai.co apex#390
alichherawalla merged 1 commit into
mainfrom
website/deploy-to-apex

Conversation

@alichherawalla

Copy link
Copy Markdown
Collaborator

Summary

  • Rewrites website/index.md in the voice from docs/brand_tone_voice.md: proof-first, mechanism-not-promise privacy framing, no em dashes, no FOMO badges.
  • Refreshes the on-device model list for mid-2026: Gemma 4 (E2B/E4B, Apr 2026), Qwen 3.5 (Feb 2026), plus Phi-4 Mini, DeepSeek R1 Distill, Llama 3.2, Ministral. Big variants get a "use a desktop via Ollama" note.
  • Reconciles pricing: Round 2 alpha is $30 one-time (Round 1 sold out at the same price), public launch is $50 one-time. No subscription. Drops the "6 months free" framing.
  • Updates Slack invite to zt-3w2utgk0w-EDiDZBq6KmSZZwEw5Tkhnw everywhere.
  • Hero stat now reads 100K+ downloads, 4.3 stars iOS, 2,458+ GitHub stars.
  • Moves the Jekyll site from docs.offgridmobileai.co to the apex offgridmobileai.co (CNAME, _config.yml, robots.txt, llms.txt).

DNS already done

4x A + 4x AAAA records added on the apex via Cloudflare API, DNS-only (grey cloud) so GitHub Pages can issue TLS.

Test plan

  • CI Deploy Off Grid Docs workflow goes green on merge
  • https://offgridmobileai.co loads the Jekyll homepage
  • /early-access form fires early_access_signup to PostHog with plan: round2_30

…o apex

- Move site from docs.offgridmobileai.co to offgridmobileai.co (CNAME, _config.yml, robots.txt, llms.txt)
- Rewrite index.md homepage per docs/brand_tone_voice.md: proof-first claims, no FOMO, no em dashes, single hyphens, mechanism-not-promise privacy framing
- Refresh model list for mid-2026: Gemma 4 (E2B/E4B, Apr 2026), Qwen 3.5 (Feb 2026), keep Phi-4 Mini / DeepSeek R1 Distill / Llama 3.2 / Ministral
- Pricing: Round 2 alpha is $30 one-time (Round 1 sold out), public launch $50 one-time, no subscription
- Drop the "6 months free" framing now that there is no recurring tier to discount against
- Update Slack invite link to zt-3w2utgk0w-EDiDZBq6KmSZZwEw5Tkhnw across all pages
- Homepage Pro CTA links to /early-access instead of inline form
- Hero stat now reads 100K+ downloads, 4.3 stars iOS, 2,458+ GitHub stars

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

@greptile-apps greptile-apps Bot 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.

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.

@alichherawalla alichherawalla merged commit f4e8fd7 into main Jun 14, 2026
4 checks passed
@alichherawalla alichherawalla deleted the website/deploy-to-apex branch June 14, 2026 07:48
@sonarqubecloud

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Code Review

This pull request updates the Off Grid website, migrating the domain to offgridmobileai.co, updating the Slack invite link, and adding CSS styles for a Pro waitlist form. It also updates the early access page to reflect the new Round 2 alpha pricing ($30 one-time fee) and heavily refreshes the homepage content with a new model list (including Gemma 4 and Qwen 3.5) and an FAQ section. Feedback points out an inconsistency in the FAQ section where older models are still recommended, and suggests removing a redundant aria-disabled attribute from a span element.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment thread website/index.md
Off Grid ships [llama.cpp](https://github.com/ggml-org/llama.cpp) inside the app. Quantized models (Q4_K_M is the usual balance) get memory-mapped into RAM and run on your CPU and GPU. iPhone 15 Pro runs a 4B model at around 20-25 tok/s. Snapdragon 8 Gen 3 is similar. Older devices run smaller models slower but still locally.

**Which model should I pick?**
If you have a 2023 or newer phone with 6GB+ RAM, start with Gemma 3 4B or Qwen 3 4B. If you have 4GB, use Phi-4 Mini or Llama 3.2 3B. Voice and vision work best with Gemma 3n.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The FAQ section recommends Gemma 3 4B, Qwen 3 4B, and Gemma 3n, which is inconsistent with the refreshed mid-2026 model list introduced in the table above (which features Gemma 4 E2B/E4B and Qwen 3.5). Please update this recommendation to align with the new model list.

Suggested change
If you have a 2023 or newer phone with 6GB+ RAM, start with Gemma 3 4B or Qwen 3 4B. If you have 4GB, use Phi-4 Mini or Llama 3.2 3B. Voice and vision work best with Gemma 3n.
If you have a 2023 or newer phone with 6GB+ RAM, start with Gemma 4 E4B or Qwen 3.5 4B. If you have 4GB, use Phi-4 Mini or Llama 3.2 3B. Voice and vision work best with Gemma 4 E2B.

Comment thread website/early-access.md
<button type="button" class="ea-platform-link" data-plan="monthly">$19.99 / month</button>
<input type="hidden" name="plan" id="eaPlan" value="yearly">
<span class="ea-platform-label">Round 2</span>
<span class="ea-platform-link active" aria-disabled="true">$30 one-time</span>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The <span> element has aria-disabled="true". Since <span> is a non-interactive element by default, aria-disabled is redundant and can be confusing for assistive technologies. If this element is purely informational and not interactive, you can safely remove aria-disabled="true".

Suggested change
<span class="ea-platform-link active" aria-disabled="true">$30 one-time</span>
<span class="ea-platform-link active">$30 one-time</span>

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.

1 participant