Skip to content

Commit 0db0148

Browse files
committed
freebuff: Update website faq
1 parent 078a910 commit 0db0148

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

freebuff/web/src/app/home-client.tsx

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,28 @@ const faqs = [
2929
{
3030
question: 'What models do you use?',
3131
answer:
32-
'MiniMax M2.5 as the main coding agent, Gemini 3.1 Flash Lite for finding files and research, and GPT-5.4 for deep thinking if you connect your ChatGPT subscription.',
32+
'MiniMax M2.5 as the main coding agent. Gemini 3.1 Flash Lite for finding files and research.\n\nConnect your ChatGPT subscription to unlock GPT-5.4 for deep thinking.',
3333
},
3434
{
3535
question: 'Which countries is Freebuff available in?',
3636
answer:
37-
'Freebuff is currently available in the United States, Canada, United Kingdom, Australia, New Zealand, Norway, Sweden, Netherlands, Denmark, Germany, Finland, Belgium, Luxembourg, Switzerland, Ireland, and Iceland.',
37+
'Freebuff is currently available in:\n\nUnited States, Canada, United Kingdom, Australia, New Zealand, Norway, Sweden, Netherlands, Denmark, Germany, Finland, Belgium, Luxembourg, Switzerland, Ireland, and Iceland.',
3838
},
3939
{
4040
question: 'Are you training on my data?',
4141
answer:
42-
'No. We only use model providers that do not train on our requests. Your code stays yours.',
42+
'No. We do not share your data with third parties that would train on it or use it for another purpose.\n\nIn the future, we may use request data to train custom models to improve Freebuff — this will be opt-out, so you\'ll always have control.',
4343
},
4444
{
4545
question: 'What data do you store?',
4646
answer:
4747
"We don't store your codebase. We only collect minimal logs for debugging purposes.",
4848
},
49+
{
50+
question: 'What else is cool in Freebuff?',
51+
answer:
52+
'Freebuff comes with specialized subagents: file-picker finds relevant files across your codebase, code-reviewer gives critical feedback on your changes, and browser-use lets the AI control a real browser to test your app.\n\nAfter every response, it generates 3 clickable follow-up suggestions so you always know what to do next.\n\nFor big tasks, try the /interview → /plan → implement → /review workflow to go from idea to polished code.',
53+
},
4954
]
5055

5156
const setupSteps = [
@@ -294,7 +299,7 @@ function FAQList() {
294299
<div className="flex gap-4 px-4 pb-5">
295300
<span className="flex-shrink-0 w-[1.5ch]"></span>
296301
<div className="border-l-2 border-acid-matrix/40 pl-4">
297-
<p className="text-zinc-300 leading-relaxed text-sm">
302+
<p className="text-zinc-300 leading-relaxed text-sm whitespace-pre-line">
298303
{faq.answer}
299304
</p>
300305
</div>
@@ -312,7 +317,7 @@ function FAQList() {
312317
const PHILOSOPHY_WORDS = [
313318
{ word: 'SIMPLE', description: 'No modes. No config. Just works.' },
314319
{ word: 'FAST', description: '5–10× speed up via fast models and quick context gathering.' },
315-
{ word: 'LOADED', description: 'Built in web research, plan/review using your ChatGPT subscription, and more.' },
320+
{ word: 'LOADED', description: 'Built in web research, browser use, plan/review using your ChatGPT subscription, and more.' },
316321
]
317322

318323
function PhilosophySection() {

0 commit comments

Comments
 (0)