Hi @Where-who
I had a look at your performance scores and it feels really frustrating that your site’s visuals and animations look great, but some of them are loading in a way that slows down the first visible part of the page (the LCP). Here’s what you can do:
Small images loading slowly
Even though your SVGs and AVIFs are tiny they can still feel slow if too many load at once or if the browser waits for them all before painting the page.
You can do,
For images that appear right away like your logo or hero section , add a preload tag in your page settings:
This tells the browser to grab that image first.
For icons or small visuals try combining them into a single SVG sprite instead of separate files fewer requests=faster load.
GSAP scripts blocking rendering
Your report shows GSAP as a render-blocking script. That means the browser is waiting for the animations to load before showing your content.
You can do is:
In your custom code settings, add defer to your GSAP script tag like this:
This makes the content appear first, and then the animations kick in after the page is visible.
You can also move your animation trigger inside a window.onload function to make sure the hero image renders before the animations run.
Loader slowing things down
Custom loaders often look nice but can delay your site’s first paint if they use JavaScript to hide content.
Use CSS instead of JS for your loader animation so the main content isn’t blocked.
If your loader uses JS to fade out, add a small delay (like 0.1s) after the main content loads instead of waiting for everything to finish.
Webflow’s hosting and caching
Sometimes the issue comes from caching setup. Webflow’s CDN is fast, but certain assets don’t always stay cached long enough.
You can,
Re-upload any heavy SVGs or old images; this resets their cache and helps browsers load newer versions quicker.
Make sure you’ve enabled responsive images in Webflow for all image elements this makes Webflow automatically create smaller versions for mobile.
Test after every change
After each change, test your site again using PageSpeed Insights and focus on your “LCP” number. It’s the easiest way to see which fix made the biggest improvement.
If you want an easier, automated way to handle image compression, cache optimization, and script loading order without doing all this manually you can also try the Website Speedy App it’s built to help Webflow sites load faster and improve LCP without changing your design setup.