Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize suaquadra.com.br
TTFB of 1,028ms and redirect chain waste 1,830ms, severely delaying LCP by 20+ seconds.
Remove the redirect from https://suaquadra.com.br to https://www.suaquadra.com.br by updating DNS/server config to serve www directly. Optimize server response time through database query optimization, CDN implementation, and server resource scaling in your Next.js deployment.
A score of 52 falls in the "Needs Improvement" range (50-89). While it is better than poor (0-49), you should aim for 90+ to provide an optimal user experience and maximize SEO benefits.
This site is slower than approximately 35% of similar sites. The main issues affecting performance are image optimization, JavaScript execution time, and layout stability.
Addressing these issues could improve your conversion rate by 15-20% and boost your search engine rankings.
Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
Interaction to Next Paint
Good: < 200ms
Measures how quickly the page responds to user interactions
Cumulative Layout Shift
Good: < 0.1
Measures visual stability - how much content shifts during page load
This Next.js real estate site has poor performance with a score of 52/100, taking over 20 seconds to fully load. The biggest problem is an extremely slow server response (over 1 second) combined with a redirect that adds nearly 800ms of delay before the page even starts loading. The site is also serving oversized images that waste 728KB of data and using excessive JavaScript that blocks rendering for 1.4 seconds. Fixing the server response time, eliminating the redirect, and optimizing image delivery could improve the performance score by 30+ points and dramatically reduce loading times for users browsing property listings.
Why It Matters:
Resource load delay of 4,613ms for LCP image makes it undiscoverable and prevents fast loading.
How to Fix:
Add the LCP image directly to your Next.js page HTML with next/image component using priority={true} and fetchpriority='high' attributes. Move the image above-the-fold in your React component structure. Preload the image URL in Next.js Head component using <link rel='preload' as='image'>.
Why It Matters:
655KB of unused JavaScript increases load time by 3.1 seconds and blocks main thread execution.
How to Fix:
Implement Next.js dynamic imports for non-critical components using next/dynamic. Code-split large chunks like 6681-7dd4a6fe9092a87f.js by route-based splitting. Remove unused Google Tag Manager scripts or defer them using Next.js Script component with strategy='afterInteractive'.
Once your site is optimized, maintain that speed. Use DeployHQ for zero-downtime, automated deployments—so performance fixes and updates go live safely every time, without breaking your site.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Next.js Speed Tests
655KB of unused JavaScript increases load time by 3.1 seconds and blocks main thread execution.
Resource load delay of 4,613ms for LCP image makes it undiscoverable and prevents fast loading.
Poor caching configuration forces users to re-download resources on repeat visits, missing opportunities for faster load times.
356KB of unused JavaScript is bloating your bundle size and slowing down page load without providing value.