-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from 1Copenut/chore/perf-experiments
[CHORE] Run performance experiments based on WebPageSpeedTest results
- Loading branch information
Showing
7 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
@font-face{ | ||
font-family: 'Bitter'; | ||
font-style: normal; | ||
@font-face { | ||
font-family: "Bitter"; | ||
font-display: swap; | ||
font-stretch: normal; | ||
font-style: normal; | ||
font-variation-settings: "wght" var(--font-weight-normal); | ||
src: url('../fonts/Bitter.ttf') format('truetype'); | ||
src: url("../fonts/Bitter.ttf") format("truetype"); | ||
} | ||
|
||
@font-face{ | ||
font-family: 'Bitter'; | ||
font-style: italic; | ||
@font-face { | ||
font-family: "Bitter"; | ||
font-display: swap; | ||
font-stretch: normal; | ||
font-style: italic; | ||
font-variation-settings: "wght" var(--font-weight-balanced); | ||
src: url('../fonts/Bitter-Italic.ttf') format('truetype'); | ||
src: url("../fonts/Bitter-Italic.ttf") format("truetype"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,20 +4,20 @@ | |
<source | ||
media="(min-width: 80rem)" | ||
srcset="/images/backgrounds/large-header.jpg, /images/backgrounds/[email protected] 2x" | ||
/> | ||
/> | ||
<source | ||
media="(min-width: 64rem)" | ||
srcset="/images/backgrounds/mid-header.jpg, /images/backgrounds/[email protected] 2x" | ||
/> | ||
/> | ||
<source | ||
media="(min-width: 48rem)" | ||
srcset="/images/backgrounds/tablet-header.jpg, /images/backgrounds/[email protected] 2x" | ||
/> | ||
/> | ||
<source | ||
media="(min-width: 20rem)" | ||
srcset="/images/backgrounds/mobile-header.jpg, /images/backgrounds/[email protected] 2x" | ||
/> | ||
<img src="/images/backgrounds/mobile-header.jpg" alt="" /> | ||
/> | ||
<img src="/images/backgrounds/mobile-header.jpg" height="375px" width="100px" alt=""/> | ||
</picture> | ||
</div> | ||
<div class="content__layout content__layout--header-text"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!-- Sentry.njk --> | ||
<script src="{{config.sentryScriptURL}}" crossorigin="anonymous" nonce="{{config.nonceSecret}}"></script> | ||
<script src="{{config.sentryScriptURL}}" crossorigin="anonymous" nonce="{{config.nonceSecret}}" defer></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<script src="{{ config.turnstileScriptURL }}" async defer nonce="{{ config.nonceSecret }}"></script> | ||
<script src="{{ config.turnstileScriptURL }}" nonce="{{ config.nonceSecret }}" async defer></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<script async src="{{config.umamiScriptURL}}" data-website-id="{{config.umamiDataWebsiteId}}" nonce="{{ config.nonceSecret }}"></script> | ||
<script async src="{{config.umamiScriptURL}}" data-website-id="{{config.umamiDataWebsiteId}}" nonce="{{ config.nonceSecret }}" defer></script> |