removed tools, and progress on deprived trackers
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 23s

This commit is contained in:
MagicBOTAlex 2025-07-06 07:35:09 +08:00
parent 3c54f7cdd1
commit d5a57521b3
3 changed files with 73 additions and 28 deletions

View file

@ -0,0 +1,67 @@
<script>
import { onMount } from "svelte";
let debug = false;
onMount(()=> {
let tabTittleElement = window.document.getElementById("TabTittle");
if (tabTittleElement) // Not null
tabTittleElement.innerHTML = "Deprived devs";
const params = new URLSearchParams(window.location.search);
debug = params.has('debug');
});
</script>
<!-- Desktop -->
<div class="{debug? "" : "hidden"} max-md:hidden cozette flex flex-col justify-center items-center w-full md:px-8 pt-4">
<h2 class="text-center text-3xl" >
Trackers desktop
</h2>
<div class="grid grid-cols-2 items-center">
<div>
<img src="https://placehold.co/400x400" alt="">
</div>
<div class="flex flex-col">
<div>
<h2 class="font-semibold text-base-content">Deprived Trackers</h2>
<span class="text-base-content">
Hopefully the cheapest Smol-type SlimeVR Trackers on the market.
</span>
</div>
<div class="py-2"></div>
<div class="flex justify-center gap-2">
<a href="/" class="btn btn-secondary">Buy</a>
<a href="/shop/trackers" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
</div>
<!-- Mobile -->
<div class="{debug? "" : "hidden"} md:hidden cozette flex flex-col justify-center items-center w-full md:px-8 pt-4">
<h2 class="text-center text-3xl" >
Trackers mobile
</h2>
<div class="grid grid-cols-2 items-center">
<div>
<img src="https://placehold.co/400x400" alt="">
</div>
<div class="flex flex-col">
<div>
<h2 class="font-semibold text-base-content">Deprived Trackers</h2>
<span class="text-base-content">
Hopefully the cheapest Smol-type SlimeVR Trackers on the market.
</span>
</div>
<div class="py-2"></div>
<div class="flex justify-center gap-2">
<a href="/" class="btn btn-secondary">Buy</a>
<a href="/shop/trackers" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
</div>