Skip to content

Commit ecbe794

Browse files
fix: update pricing page and QuizForm with detailed Ollama setup instructions and browser compatibility notes
1 parent 783e62a commit ecbe794

2 files changed

Lines changed: 5 additions & 10 deletions

File tree

app/pricing/page.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ const pricingTiers: PricingTier[] = [
3333
name: "Local Explanations",
3434
price: "€2.99",
3535
priceId: (process.env.NEXT_PUBLIC_STRIPE_PRICE_LOCAL || "").trim(),
36-
description: "Get AI explanations using your local Ollama setup",
36+
description:
37+
"Get AI explanations using your local Ollama setup. Requires some technical setup; best with Firefox (works out of the box) or Chrome/Edge (permission popup). Not supported in Opera or Safari.",
3738
features: [
3839
"Everything in Ads Free",
3940
"Ollama explanations",
4041
"Privacy-focused (local AI)",
4142
"No API costs",
4243
"Offline explanations",
44+
"Browser note: Firefox ✓ · Chrome/Edge ✓ (allow popup) · Opera/Safari ✗",
4345
],
4446
},
4547
{
@@ -51,10 +53,7 @@ const pricingTiers: PricingTier[] = [
5153
popular: true,
5254
features: [
5355
"Everything in Local",
54-
"OpenAI GPT integration",
55-
"Google Gemini support",
56-
"Mistral AI access",
57-
"DeepSeek integration",
56+
"OpenAI, Gemini, Mistral, DeepSeek access",
5857
"API key management",
5958
"Multiple AI providers",
6059
],

components/QuizForm.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,7 @@ const QuizForm: FC<Props> = ({
255255
setupInstructions +=
256256
"1. Use Firefox (works out of the box) or Chrome/Edge (click Allow on popup)\n";
257257
setupInstructions +=
258-
"2. Or use this site on localhost: http://localhost:3000 (run npm run dev)\n";
259-
setupInstructions +=
260-
"3. Or use BYOK/Ditectrev instead of Ollama on this site\n";
258+
"2. Or use BYOK/Ditectrev instead of Ollama on this site\n";
261259
} else if (isPrivateNetworkAccess) {
262260
setupInstructions +=
263261
"Chrome blocks HTTPS sites from accessing localhost (Private Network Access).\n\n";
@@ -303,8 +301,6 @@ const QuizForm: FC<Props> = ({
303301
"- Full CORS setup (macOS, Windows, Linux): https://objectgraph.com/blog/ollama-cors/\n";
304302
setupInstructions +=
305303
"- Firefox: works out of the box | Chrome/Edge: click Allow on popup | Opera/Safari: not supported\n";
306-
setupInstructions +=
307-
"- Or use this site on localhost (http://localhost:3000) for Ollama\n";
308304
setupInstructions +=
309305
"- If 'address already in use': https://github.com/ollama/ollama/issues/707";
310306

0 commit comments

Comments
 (0)