What problem does it solve? Web pages that fail Google's Core Web Vitals thresholds rank lower in search results and deliver poor user experiences, but diagnosing which metric is failing and why requires deep knowledge of rendering, networking, and JavaScript execution. ## Core Features & Use Cases - LCP Optimization: Fix slow server response times, render-blocking resources, unoptimized hero images, and client-side rendering delays with preloading, critical CSS, and SSR/SSG patterns. - INP Optimization: Break up long tasks, defer heavy event handler work, lazy-load third-party scripts, and reduce excessive re-renders in React and Vue. - CLS Optimization: Eliminate layout shifts from unsized images, ads, dynamic content injection, web font swaps, and layout-triggering animations. - Use Case: A Next.js site has a 4.5s LCP and failing Search Console report. Use this Skill to identify the LCP element, add fetchpriority preloading, inline critical CSS, and verify the fix with the web-vitals library. ## Quick Start Analyze my page's Core Web Vitals and fix the LCP and CLS issues in my Next.js hero section.