Not sure about the performance but what I see in your code is that you're using too much nested divs within your section.
Feb 3, 2024
9
Level 2
Is lighthouse good for testing performance?
Hello I've got web app made in laravel, on desktop device i have got 95 overall performance, but while i am testing it on mobile device i am getting this results
First Contentful Paint
6.0 s
Largest Contentful Paint
7.1 s
Total Blocking Time
0 ms
Cumulative Layout Shift
0.012
Speed Index
6.3 s
and it shows me that the Largest Contentful Paint is directly in paragraph block, i dont even know how can I improve this .. :/
<section class="home" id="úvod">
<div class="container">
<div class="row mt-5">
<div class="col-lg-6 mt-5">
<h1 class="display-3 text-white">Nech své vlasy promluvit</h1>
<p class="text-white">V našem barbershopu nejde jen o úpravu vlasů a vousů, ale o vytvoření jedinečného stylu,
který vypráví Váš osobní příběh. Zapomeňte na obyčejné stříhání – u nás začíná cesta k novému
vzhledu, kterým budete vyprávět svůj příběh. Vaše vlasy jsou naším plátnem – a my
jim dáme hlas. Nechte své vlasy promluvit s námi!</p>
<a href="#rezervace"><button type="button" class="btn btn-brand">
Objednej se
</button></a>
</div>
</div>
</div>
</section>
i am first time preparing app for production, and i will be glad for any advice with that :/
Please or to participate in this conversation.