SEO Power Audit
Full-page checks: headings, meta, alt text, empty links, keywords, and more.
Decide what should render server-side (PHP/edge/build) and what should stay client-side. Improve First Contentful Paint, stability, and maintainability.
Modern sites often lean heavily on JavaScript—even for content that never changes. That can delay paint, cause layout shifts, and make pages brittle. PHP or Javascript? inspects your page and recommends when to shift work off the client (server/edge/build-time) and when to keep it client-side.
Tip: re-run after each refactor. Pair results with Lighthouse, Web Vitals (INP, CLS), and server timing.
<head> and add defer or type="module".innerHTML injections with server templates/partials.| Pattern | Prefer | Why |
|---|---|---|
| Static nav/header/footer, hero copy, FAQ | PHP/edge/build | Immediate paint; simpler; no hydration required. |
| JSON-LD (Organization, WebSite, FAQPage, Article) | Server/build inline | Stable markup at crawl time; better machine understanding. |
| Fetching same-origin data before first paint | Server/build | Removes waterfalls; improves FCP/LCP and offline behaviour. |
| Personalised dashboard, editor, complex filter UI | Client JS | Needs runtime state, interactions, and reactivity. |
| Form validation hints & UI affordances | Client JS (progressive) | Enhance UX while server still validates. |
<body> and add defer / use modules.No. “Server-side” can be PHP, Node on the server, edge functions (Cloudflare), or static builds (11ty, Astro, Next static export). The principle: ship HTML early, hydrate only what needs it.
Usually for above-the-fold content and static fragments, yes. Measure with Lighthouse and Web Vitals; in some cases (heavy personalisation), client-side can still be appropriate.
Faster, more stable pages help AI crawlers parse and trust your content. Server-rendered schema and answer-first sections reduce parsing errors and increase citation readiness.
No—it provides analysis and recommendations you can implement in your stack (PHP includes/partials, build templates, edge rewrites).
Full-page checks: headings, meta, alt text, empty links, keywords, and more.
Generate clean JSON-LD for FAQPage, HowTo, Article, and Organization.
Directional signal of mentions/citations in AI answer engines.