Instructions

Updated January 27, 2025

Custom code
Font Smoothing

Inside the Project Settings, in the Custom Code tab you'll notice some style code has been added to the head of each page.

This code is to ensure that the text rendering is smooth and consistent across all browsers. It does not require any action on your part.

Smoot Scrolling

If you want to use smooth scrolling from LENIS please add this code in Footer code before </body> tag

<script
  data-id-scroll
  data-lerp="0.075"
  data-wheelMultiplier:="1"
  data-autoinit="true"
  data-duration="1"
  data-orientation="vertical"
  data-smoothWheel="true"
  data-smoothTouch="false"
  data-touchMultiplier="1"
  data-easing="(t => Math.min(1, 1.001 - Math.pow(2, -10*t)))"
  data-useOverscroll="true"
  data-useControls="true"
  data-useAnchor="true"
  data-useRaf="true"
  data-infinite="false"
  defer
  src="https://cdn.prod.website-files.com/645e0e1ff7fdb6dc8c85f3a2/648b1b0b9d6638f9da912dc2_lenis-offbrand-v2.txt"
></script>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.1 1.1/jquery.min.js"></script>
<script>
	$('.page-link').click(function (e) {
		e.preventDefault();
		var goTo = this.getAttribute("href");
		
		setTimeout(function(){
			window.location = goTo;
		},1000);
	});
</script>