|
| 1 | +import { type FAQ } from "./FAQTable" |
| 2 | + |
| 3 | +export const faqData: FAQ[] = [ |
| 4 | + { |
| 5 | + index: 0, |
| 6 | + question: "What is the purpose of a developer portfolio?", |
| 7 | + answer: ( |
| 8 | + <> |
| 9 | + A great developer portfolio is more than a resume; it's a live demonstration of your skills and philosophies. This site, for example, isn't |
| 10 | + just a list of projects; it's built on my own performance-oriented library (React-Zero-UI). to showcase your commitment to simple, fast, and |
| 11 | + elegant code. a recent study found that portfolios DO have a future.{" "} |
| 12 | + <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5306426/" className="text-slate-500"> |
| 13 | + Do portfolios have a future? |
| 14 | + </a> |
| 15 | + </> |
| 16 | + ), |
| 17 | + }, |
| 18 | + { |
| 19 | + index: 1, |
| 20 | + question: "What's actually included in your web design packages?", |
| 21 | + answer: ( |
| 22 | + <> |
| 23 | + Everything you need for a successful launch and nothing you don't. Every package includes a strategic game plan, conversion-focused copywriting, a |
| 24 | + custom mobile-first design, SEO foundation setup, and our 90-day post-launch support guarantee. We believe in total transparency—no hidden fees, ever. |
| 25 | + </> |
| 26 | + ), |
| 27 | + }, |
| 28 | + { |
| 29 | + index: 2, |
| 30 | + question: "What are the 'golden rules' of a great business website?", |
| 31 | + answer: ( |
| 32 | + <> |
| 33 | + A great website isn't just about looks; it's about results. Our five golden rules are: |
| 34 | + <ul className="list-disc pl-4"> |
| 35 | + <li>Speed: If it doesn't load in under 2 seconds, you're losing customers.</li> |
| 36 | + <li>Clarity: It must pass the "5-second test": visitors must know what you do instantly.</li> |
| 37 | + <li>Action: Every page needs a clear call-to-action guiding the user.</li> |
| 38 | + <li>Mobile-First: It must be flawless on a phone, where most users will see it.</li> |
| 39 | + <li>SEO-Ready: It must be built to be found on Google from day one.</li> |
| 40 | + </ul> |
| 41 | + </> |
| 42 | + ), |
| 43 | + }, |
| 44 | + { |
| 45 | + index: 3, |
| 46 | + question: "How do I find the right web designer for my business?", |
| 47 | + answer: ( |
| 48 | + <> |
| 49 | + Look for three things: |
| 50 | + <ul className="list-disc pl-4"> |
| 51 | + <li>A Portfolio with Results: Don't just look for pretty sites; ask for proof that their work actually helped grow a business.</li> |
| 52 | + <li>A Transparent Process: They should be able to clearly explain their steps from start to finish.</li> |
| 53 | + <li> |
| 54 | + A Focus on ROI: The right partner talks less about colors and fonts and more about how they'll turn your website into a predictable source of |
| 55 | + revenue. |
| 56 | + </li> |
| 57 | + </ul> |
| 58 | + </> |
| 59 | + ), |
| 60 | + }, |
| 61 | + { |
| 62 | + index: 4, |
| 63 | + question: "What is the 3 second rule in web design?", |
| 64 | + answer: ( |
| 65 | + <> |
| 66 | + First impressions matter. Your have 3 seconds to make a good impression. and capture attention. After a first impression is formed on a website, it is |
| 67 | + difficult to change. <strong className="text-slate-500">We focus on making a good first impression.</strong> |
| 68 | + <a href={"https://academicworks.cuny.edu/cgi/viewcontent.cgi?referer=&httpsredir=1&article=1157&context=ny_pubs"} className="text-xs text-slate-500"> |
| 69 | + An Analysis of First Impression{" "} |
| 70 | + </a> |
| 71 | + </> |
| 72 | + ), |
| 73 | + }, |
| 74 | +] |
0 commit comments