Summary
Built and deployed a complete 7-page personal injury attorney website for David B. Peel (peel.zenthic.space) using the same Forge API + WP-CLI pipeline as the Colleen Butler site, but this time leveraging parallel background agents to write 6 pages simultaneously while deploying schema and infrastructure in the foreground.
The Client
David Peel is a personal injury attorney in Millington, TN with over 25 years of experience. Key brand elements: "Small Town Relationships...Big Time Results" tagline, "Never a Fee Unless We Win" contingency model, Crash the Law Dog (Goldendoodle mascot), impressive case results ($13.7M, $8.6M, $2.85M), SuperLawyer since 2011, AV+ Preeminent rated, faith-based practice, two offices (Millington + Arlington coming soon).
Pages Deployed
All 7 pages use WordPress core blocks only — same pattern as colleen.zenthic.space. Each page authored as raw block markup, base64-encoded, deployed via Forge command API.
PagePost IDKey Features Home5Navy hero with gold accents + dual CTA, 5-column trust bar (SuperLawyer/Multi-Million Dollar/AV+/Top 100/25+ Years), 8 practice area cards (2 rows × 4) with gold top borders and emoji icons, case results section ($13.7M/$8.6M/$2.85M/$850K/$600K in gold), "Why Families Trust" 4-card grid, Crash the Law Dog section, 3 testimonial cards, bottom CTA Practice Areas68 detailed practice area sections with alternating white/slate backgrounds — Car Accidents, Tractor Trailer, Pedestrian, Passengers, Medical Malpractice, Workplace, Catastrophic Injury, Wrongful Death. Each with multi-paragraph legal content and gold CTA About7Attorney bio, CSS awards timeline with gold markers (1996→2000→2011→AV+→Multi-Million→Face of Catastrophic Injury), media appearances, Crash the Law Dog section, community/faith section Case Results8Featured verdicts in large gold dollar amounts with case descriptions, disclaimer Reviews95.0 rating summary, 6 client review cards with gold left borders and 5-star ratings, platform badges What to Expect10CSS process timeline with 5 gold-marked steps (Free Eval→Investigation→Treatment→Demand→Settlement/Trial), 3-column stats bar, 6 FAQ accordions using/
Contact11FluentForm (ID 3) with 6 fields + Millington/Arlington office info, Google Maps embed, gold phone CTA
Parallel Agent Strategy
This build introduced a parallel authoring workflow:
1. Home page — Written directly in the main conversation thread (largest/most important page)
2. Practice Areas — Background agent ab409dd (36KB output)
3. About — Background agent abb8c51 (33KB output)
4. Case Results + Reviews + What to Expect + Contact — Background agent a228afa (4 pages, 68KB total)
While the 3 agents wrote page content in parallel, the main thread deployed the schema mu-plugin and SureRank SEO meta — no idle time. All 6 pages were ready to deploy almost simultaneously.
Theme Configuration
ElementValue ColorsNavy #1B2A4A (headers/heroes), Gold #C8A951 (CTAs/accents), Slate #F5F6F8 (alternating sections), Charcoal #1E1E1E (footer) FontsMerriweather 600/700 (headings — authoritative serif) + Inter 400/600/700 (body/nav/buttons) HeaderNavy background, white nav text, gold hover, logo from peellawfirm.com FooterCharcoal background, light gray text, gold links Layout1200px container, no sidebar, full-width contentSchema & SEO
Schema mu-plugin (peel-schema.php) outputs page-specific JSON-LD:
SureRank SEO meta on all 7 pages — title tags under 60 chars, descriptions under 160 chars.
FluentForm Fix
The original form was created via direct database INSERT, which included form_fields JSON but omitted required fluentform_form_meta entries (formSettings, notifications, template_name). Without these meta records, FluentForm renders nothing. Also discovered that phone and input_textarea elements are FluentForm Pro features — switched to input_text and textarea element types for the free version.
Technical Details
- Forge server: 1157556, Site: 3051967
- WP path:
/home/peelzenthicspace/peel.zenthic.space/public_html - Page IDs: Home=5, Practice Areas=6, About=7, Case Results=8, Reviews=9, What to Expect=10, Contact=11
- Menu: Primary menu with 7 items, "Free Consultation" as final gold-highlighted item
- Logo: Imported from Squarespace CDN (served as WebP despite .PNG extension), attachment ID 21
- GP meta per page:
_generate-sidebar-layout-meta = no-sidebar+_generate-disable-headline = true
Reflection: The parallel agent approach cut page authoring time significantly. Instead of writing 7 pages sequentially (which would take the entire context window), writing the Home page directly while 3 agents handled the other 6 in background meant all content was ready for deployment within a single stretch. The FluentForm discovery — that database-level form creation requires meta records beyond just form_fields — is a gotcha worth remembering. And the phone/textarea element types being Pro-only is undocumented; the free version silently skips unsupported elements without error.