Introduction
An analysis with Lighthouse shows several website issues. Note that the scores below were obtained from pages served on local server (php artisan serve).
For Homepage and Event modules

For Registration module

Possible Steps
- Reduce and re-generate image assets with lower resolutions and lossy encoding (e.g. by using
srcset and WebP).
- Only use
<h1>-<h6> tags semantically, instead of aesthetics. CSS utility classes are available for replicating similar behavior of <h1>-<h6> tags, such as <p class="font-700 h1"> instead of <h1>.
- Consider using text compression. Needsinfo for Laravel implementation.
- Consider using SVGs to replace original bitmap assets. Work has been done to remove some of the assets by replacing them with CSS, but replacing more assets can be a huge performance upgrade.
- Ensuring all
<img> labels have an alt property. Also useful for ARIA validation.
- Consider to utilize caching and Service Workers. Needsinfo for Laravel implementation.
Introduction
An analysis with Lighthouse shows several website issues. Note that the scores below were obtained from pages served on local server (
php artisan serve).For Homepage and Event modules

For Registration module

Possible Steps
srcsetand WebP).<h1>-<h6>tags semantically, instead of aesthetics. CSS utility classes are available for replicating similar behavior of<h1>-<h6>tags, such as<p class="font-700 h1">instead of<h1>.<img>labels have analtproperty. Also useful for ARIA validation.