41 lines
1.9 KiB
TypeScript
41 lines
1.9 KiB
TypeScript
/**
|
|
* FAQ for the hands-on SaaS architecture consultant service page.
|
|
* Single source of truth for both the page content and FAQPage JSON-LD.
|
|
*/
|
|
|
|
export interface FaqItem {
|
|
question: string;
|
|
answer: string;
|
|
}
|
|
|
|
export const faqItems: FaqItem[] = [
|
|
{
|
|
question: 'Do you only do frontend?',
|
|
answer: "No. I'm product-first with backend and infra awareness—but frontend foundations are often the bottleneck for early-stage teams. I focus where the friction is.",
|
|
},
|
|
{
|
|
question: 'Will this slow us down?',
|
|
answer: 'No. The goal is to make iteration cheaper. A solid foundation reduces rework and lets you ship faster over time.',
|
|
},
|
|
{
|
|
question: 'Do we need a full redesign?',
|
|
answer: 'Usually no. I take an incremental foundation approach: fix the architecture and systems first, then evolve the UI. Big-bang redesigns are rarely necessary.',
|
|
},
|
|
{
|
|
question: 'What tech stacks do you work with?',
|
|
answer: 'I work with modern web stacks—React, Vue, Svelte, and similar. The principles (CSS architecture, tokens, components, accessibility) transfer. We can discuss fit for your stack.',
|
|
},
|
|
{
|
|
question: 'How do you handle accessibility?',
|
|
answer: "Baseline standards (semantic markup, keyboard, focus, ARIA where needed) plus components built accessibly from the start. It's baked into the system, not bolted on.",
|
|
},
|
|
{
|
|
question: 'Can you work with our designer?',
|
|
answer: 'Yes. Design tokens and a component system give designers and engineers a shared language. I can align with your design process and tools.',
|
|
},
|
|
{
|
|
question: 'Do you offer ongoing support?',
|
|
answer: 'Yes, via an advisory retainer: regular check-ins, optional PR review, and guidance as you grow. Bounded and lightweight—not a 24/7 MSP model.',
|
|
},
|
|
];
|