mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-03-05 23:00:44 +00:00
Fix some performance issues
* Remove render blocking stripe JS that seems unnecessary * Use native lazy loading of images - Truly a progressive enhancement, only affects browsers that support it - Causes a warning: [Intervention] An <img> element was lazyloaded with loading=lazy, but had no dimensions specified. Specifying dimensions improves performance. See https://crbug.com/954323, which can not be easily fixed * Render content first, hydrate after that
This commit is contained in:
committed by
Aarni Koskela
parent
fb4fb44ef6
commit
bec251c4e6
@@ -34,11 +34,11 @@ class MyDocument extends Document {
|
||||
<div className="site">
|
||||
<div className="container">
|
||||
<Main />
|
||||
<NextScript />
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
<Fader />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
);
|
||||
|
||||
@@ -50,7 +50,7 @@ const IndexContent = () => (
|
||||
-yhteisöömme
|
||||
</h3>
|
||||
<div className="form">
|
||||
<InviteForm />
|
||||
<InviteForm/>
|
||||
</div>
|
||||
<p className="code-of-conduct">
|
||||
Ennen liittymistä yhteisöömme varmista, että olet lukenut yhteisön{" "}
|
||||
@@ -88,6 +88,7 @@ const IndexContent = () => (
|
||||
<img
|
||||
src="/static/images/slack.png"
|
||||
alt="Slack app at Koodiklinikka"
|
||||
loading="lazy"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
@@ -200,7 +201,7 @@ const IndexContent = () => (
|
||||
</div>
|
||||
</section>
|
||||
<div id="feed">
|
||||
<Feed />
|
||||
<Feed/>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
@@ -211,8 +212,8 @@ const Index = () => (
|
||||
<Head>
|
||||
<title>Koodiklinikka</title>
|
||||
</Head>
|
||||
<Hero />
|
||||
<IndexContent />
|
||||
<Hero/>
|
||||
<IndexContent/>
|
||||
</React.Fragment>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user