diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 9015b86..8acdd37 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -7,7 +7,7 @@ import { ButtonType } from '$lib/IO/ButtonType.ts'; import Timeline from '../comps/timeline/timeline.svelte'; import { Parallax, ParallaxLayer, StickyLayer } from "svelte-parallax"; - import { tick } from 'svelte' + import { onMount, tick } from 'svelte' import PreviewDeprivedLogo from "$lib/images/DeprivedLogo-NoBackground.png"; @@ -35,13 +35,19 @@ const mobileThreshold : string = '600px'; // was 1000px. zhen testing let mobile : boolean; + + onMount(()=> { + let tabTittleElement = window.document.getElementById("TabTittle"); + if (tabTittleElement) // Not null + tabTittleElement.innerHTML = "Deprived devs"; + }); -We are the DEPRIVED DEVS +We are the DEPRIVED DEVS