In this article

  1. What Are Core Web Vitals?
  2. LCP: Largest Contentful Paint
  3. CLS: Cumulative Layout Shift
  4. INP: Interaction to Next Paint
  5. How Framer Performs by Default
  6. Optimizing Each Metric
  7. Tracking Your Scores

Core Web Vitals are Google's official user experience metrics — and they directly influence your search rankings. For Framer designers, understanding these metrics is the difference between a site that ranks and one that doesn't.

This guide breaks down each metric, explains what Framer handles automatically, and shows you exactly what you need to optimize yourself.

What Are Core Web Vitals?

Google uses three metrics to measure real-world user experience:

LCPLoading Speed
CLSVisual Stability
INPResponsiveness

These metrics are measured on real user devices (Chrome User Experience Report) and reported in Google Search Console. Sites that meet "good" thresholds for all three get a ranking boost.

LCP: Largest Contentful Paint

LCP measures how long it takes for the largest visible element to render. On most Framer sites, this is the hero image.

ScoreRatingSEO Impact
≤ 2.5sGood ✅Ranking boost
2.5-4.0sNeeds Improvement ⚠️Neutral
> 4.0sPoor ❌Ranking penalty

What Causes Bad LCP on Framer Sites

  • Oversized hero images — a 4MB PNG hero image takes 4-6 seconds to download on mobile
  • Uncompressed source images — Framer's CDN resizes but can't fix a bloated source
  • Too many above-fold images — multiple images competing for bandwidth

How to Fix LCP

  1. Identify your LCP element using PageSpeed Insights
  2. Open Skwiz and find that specific image
  3. Convert to WebP, quality 82, max width 1920px
  4. Target: under 200KB for the LCP image
  5. Re-test — you should see a 1-3 second improvement

CLS: Cumulative Layout Shift

CLS measures unexpected layout shifts during page load — when elements move around as the page renders.

ScoreRating
≤ 0.1Good ✅
0.1-0.25Needs Improvement ⚠️
> 0.25Poor ❌

Framer generally handles CLS well because its layout system defines dimensions before images load. However, CLS issues can occur when:

  • Images load lazy without reserved space
  • Custom code components inject content dynamically
  • Font loading causes text reflow
Good news: Image compression doesn't affect CLS at all. Compressed images occupy the same space as uncompressed ones — they just load faster.

INP: Interaction to Next Paint

INP measures how quickly the page responds to user interactions (clicks, taps, key presses). This replaced FID (First Input Delay) in 2024.

ScoreRating
≤ 200msGood ✅
200-500msNeeds Improvement ⚠️
> 500msPoor ❌

INP is mostly controlled by Framer's JavaScript runtime. As a designer, you have limited direct control. However, heavy image decoding can block the main thread and worsen INP. Compressed images decode faster because there's less data to process.

How Framer Performs by Default

Out of the box, a typical Framer site with unoptimized images scores:

3.8sLCP (Poor)
0.05CLS (Good)
280msINP (Okay)

After optimizing images with Skwiz:

1.6sLCP (Good)
0.05CLS (Good)
180msINP (Good)

Image optimization alone moves LCP from "Poor" to "Good" and improves INP as a side effect. CLS stays unaffected.

Tracking Your Scores

  • Google Search Console → Core Web Vitals report — shows site-wide health over time
  • PageSpeed Insights → Lab + field data for specific URLs
  • Chrome DevTools → Performance tab for real-time debugging

Check Search Console monthly. If you see URLs flagged as "Poor" for LCP, the fix is almost always image optimization.

Bottom line: Of the three Core Web Vitals, LCP is the one you have the most control over as a Framer designer. And the fix is simple: compress your images with Skwiz.