Loading...
1.x and later
Vaza optimizes your Qwik application for search engines. Works with Qwik City routing, resumability, and Qwik's unique lazy-loading architecture.
Understands Qwik's resumability model. SEO fixes respect the zero-hydration architecture for optimal performance.
Generates SEO tags using Qwik City's DocumentHead export pattern. Works with layout.tsx and route-level head configuration.
SEO fixes maintain Qwik's zero-JS-on-load guarantee. No unnecessary client-side JavaScript for meta tags or schema.
Optimizes page content for search engines: heading hierarchy, alt text, internal links, and structured data.
// src/routes/index.tsx — auto-optimized by Vaza
import type { DocumentHead } from '@builder.io/qwik-city'
export const head: DocumentHead = {
title: 'Your Brand - Primary Value Proposition',
meta: [
{ name: 'description', content: 'Compelling description.' },
{ name: 'robots', content: 'index, follow' },
{ property: 'og:title', content: 'Your Brand' },
{ property: 'og:image', content: '/og-images/home.png' },
{ name: 'twitter:card', content: 'summary_large_image' },
],
}Yes. All SEO optimizations are server-rendered and don't add client-side JavaScript. Qwik's zero-hydration architecture is fully preserved.