Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Head and SEO
Declarative metadata, Open Graph, and structured data. Examples below use the default app router. Veryfront Code also supports the pages router throughveryfront.config.ts with router: "pages".
Prerequisites
- At least one page in your project (see Pages and routing).
Basic metadata
Head component renders its children into the document’s <head>. When multiple Head components are present (e.g., in a layout and a page), they merge: page-level tags override layout-level tags for duplicate keys.
Open Graph
Favicon and icons
Fonts
Load Google Fonts with theGoogleFonts component:
Structured data (JSON-LD)
Per-page metadata in layouts
Set defaults in the layout, override in pages:MDX frontmatter
MDX pages can set metadata via frontmatter:title and description from frontmatter into the <head>.
Verify it worked
Open the page in the browser and inspect the document<head>. Confirm:
<title>matches what you set.- The
description,og:*, andtwitter:*meta tags are present and have the expected values. - For social previews, use the Facebook sharing debugger and Twitter card validator once the site is deployed.
Next
Continue with Providers to wire up an LLM provider, or jump to the API reference for module details.Related
veryfront/head: Head component API referenceveryfront/fonts: fonts API referenceveryfront/context: access frontmatter data