SEO preview branch consolidation and fixes#7864
Merged
Conversation
- Fix FontAwesome strategy from beforeInteractive to afterInteractive on site (was blocking the HTML parser on every page load) - Add CookieYes CMP to blog app, which had no consent layer - Fix docs layout so CookieYes loads first; convert Tolt and PromptWatch to type="text/plain" to eliminate the race condition where they could execute before CookieYes set up its interception hooks - Gate PostHog behind CookieYes consent on all three apps (blog, docs, site): opt_out_capturing_by_default + cookie check for returning visitors + live cookieyes-consent-update listener for first-time visitors - Set strategy="lazyOnload" on Tally embed scripts in enterprise and partners forms (both are below the fold and were competing with hydration)
Replace bare <img> with an absolutely-positioned img inside the existing `relative aspect-video` wrapper. The aspect-ratio box reserves space before the image loads, eliminating layout shift without adding a next/image dependency to the UI package.
Testimonials carousel was rendering three full independent DOM trees (mobile / tablet / desktop) simultaneously — 144 TestimonialItem renders for a page that can only display one layout at a time. Replaced with a single 3-column grid using `hidden md:contents` / `hidden lg:contents` wrappers so CSS controls visibility without duplicating DOM nodes. Added a MAX_PER_COL = 8 cap per column to prevent re-bloat as the list grows. 144 renders → 48 (67% reduction). Skip SSR for the Antigravity hero animation (`next/dynamic ssr:false`). It is a purely decorative rAF loop that rebuilds from scratch on every page load anyway — server-rendering its 300 <g> SVG elements contributed ~36 KB to the HTML for zero user-visible benefit. Externalize the four footer compliance badge SVGs (GDPR, HIPAA, ISO 27001, SOC 2) from inline JSX blobs to static files in public/badges/. Each ~3 KB of path data is now a browser-cached <img loading="lazy"> fetch instead of re-embedded in every page response (~12 KB saved). Addresses DR-7975.
…branch # Conflicts: # apps/site/src/app/query-insights/page.tsx
…branch # Conflicts: # apps/site/src/app/(index)/page.tsx # packages/ui/src/components/footer-badges.tsx
aidankmcalister
approved these changes
May 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
v6structuremainchanges into the preview branch and resolve the resulting docs/LLM/MCP conflictsIncluded work
mainValidation
pnpm --filter docs run audit:redirects244broad redirects still to reviewNotes