2026-05-12 01:04:17 -05:00
|
|
|
import { StrictMode } from 'react'
|
feat(seo): publish privacy policy, remove street address, prerender all routes (batch 0.9.3)
Client directive (Levi Halford, 2026-08-01) ahead of Google/Meta lead forms.
Privacy policy:
- Publish approved policy verbatim at /privacy-policy (src/data/privacyPolicy.js
is the single source of truth; 292/292 source lines verified present)
- Privacy Policy link in the footer of every page
- Effective/Last Updated 2026-07-31, privacy@queuenorth.com as mailto
Remove St. Petersburg street address from every surface named in the brief:
footer, contact page, schema markup, SEO metadata, Google Maps links. Collapse
ProfessionalService + Organization schema into a single Organization with
areaServed: United States; drop geo coordinates, priceRange, openingHours.
Add the approved US-coverage sentence to About. No replacement address.
Crawler visibility (the site previously served 0 bytes of body HTML without JS):
- Prerender all 19 routes at build time via src/entry-server.jsx + scripts/prerender.js
- Hoist title/meta/canonical/JSON-LD into <head>; renderToString does not do this
and react-helmet-async's context is empty under React 19
- Serve prerendered HTML; return a real 404 for unknown paths instead of 200
- Hydrate instead of discarding the prerendered markup
SEO/perf:
- Titles <=60 and descriptions <=160 chars across all pages
- Add BreadcrumbList to interior pages, WebSite to home
- Generate sitemap.xml from the route list with git-derived lastmod
- 301 duplicate URL forms (trailing slash, //, /index.html), preserving query
- Immutable caching for content-hashed assets; no-cache for HTML
- Split the 522 KB bundle into app/react-vendor/router/icons
- loading/decoding/fetchpriority + per-route hero preload; drop unused asset
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-01 01:45:52 -05:00
|
|
|
import { createRoot, hydrateRoot } from 'react-dom/client'
|
2026-05-13 22:07:35 -05:00
|
|
|
import { RouterProvider } from 'react-router-dom'
|
2026-05-12 01:04:17 -05:00
|
|
|
import { Toaster } from 'sonner'
|
2026-05-17 20:03:42 -05:00
|
|
|
import { HelmetProvider } from 'react-helmet-async'
|
2026-05-13 22:07:35 -05:00
|
|
|
import router from './router.jsx'
|
2026-05-12 01:04:17 -05:00
|
|
|
import App from './App.jsx'
|
2026-05-28 00:18:08 -05:00
|
|
|
import ErrorBoundary from './components/ErrorBoundary.jsx'
|
2026-05-12 01:04:17 -05:00
|
|
|
|
2026-05-13 22:07:35 -05:00
|
|
|
// Wrap the router with providers
|
|
|
|
|
const Root = () => (
|
2026-05-12 01:04:17 -05:00
|
|
|
<StrictMode>
|
2026-05-17 20:03:42 -05:00
|
|
|
<HelmetProvider>
|
2026-05-28 00:18:08 -05:00
|
|
|
<ErrorBoundary>
|
|
|
|
|
<RouterProvider router={router} />
|
|
|
|
|
<Toaster position="top-right" />
|
|
|
|
|
</ErrorBoundary>
|
2026-05-17 20:03:42 -05:00
|
|
|
</HelmetProvider>
|
2026-05-13 22:07:35 -05:00
|
|
|
</StrictMode>
|
2026-05-12 01:04:17 -05:00
|
|
|
)
|
2026-05-13 22:07:35 -05:00
|
|
|
|
feat(seo): publish privacy policy, remove street address, prerender all routes (batch 0.9.3)
Client directive (Levi Halford, 2026-08-01) ahead of Google/Meta lead forms.
Privacy policy:
- Publish approved policy verbatim at /privacy-policy (src/data/privacyPolicy.js
is the single source of truth; 292/292 source lines verified present)
- Privacy Policy link in the footer of every page
- Effective/Last Updated 2026-07-31, privacy@queuenorth.com as mailto
Remove St. Petersburg street address from every surface named in the brief:
footer, contact page, schema markup, SEO metadata, Google Maps links. Collapse
ProfessionalService + Organization schema into a single Organization with
areaServed: United States; drop geo coordinates, priceRange, openingHours.
Add the approved US-coverage sentence to About. No replacement address.
Crawler visibility (the site previously served 0 bytes of body HTML without JS):
- Prerender all 19 routes at build time via src/entry-server.jsx + scripts/prerender.js
- Hoist title/meta/canonical/JSON-LD into <head>; renderToString does not do this
and react-helmet-async's context is empty under React 19
- Serve prerendered HTML; return a real 404 for unknown paths instead of 200
- Hydrate instead of discarding the prerendered markup
SEO/perf:
- Titles <=60 and descriptions <=160 chars across all pages
- Add BreadcrumbList to interior pages, WebSite to home
- Generate sitemap.xml from the route list with git-derived lastmod
- 301 duplicate URL forms (trailing slash, //, /index.html), preserving query
- Immutable caching for content-hashed assets; no-cache for HTML
- Split the 522 KB bundle into app/react-vendor/router/icons
- loading/decoding/fetchpriority + per-route hero preload; drop unused asset
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-01 01:45:52 -05:00
|
|
|
// Production pages are prerendered (scripts/prerender.js), so attach to the
|
|
|
|
|
// existing markup instead of discarding it. The dev server ships an empty shell,
|
|
|
|
|
// which falls back to a normal client render.
|
|
|
|
|
const container = document.getElementById('root')
|
|
|
|
|
|
|
|
|
|
if (container.hasChildNodes()) {
|
|
|
|
|
hydrateRoot(container, <Root />)
|
|
|
|
|
} else {
|
|
|
|
|
createRoot(container).render(<Root />)
|
|
|
|
|
}
|