Web Performance & SEO Protocol
Rendering
- Optimize LCP (Largest Contentful Paint) < 2.5s.
- Always use Next.js
<Image>component. - Prioritize static rendering or ISR over SSR when content updates are infrequent.
SEO
- Generate dynamic
metadataobjects in Next.jslayout.tsxorpage.tsx. - Include standard
robots.txtandsitemap.xmlcomponents. - Enforce semantic HTML (
<main>,<article>,<nav>,<h1>to<h6>).