Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
<meta charset="utf-8"/>
<link rel="icon" href="%sveltekit.assets%/icon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="preconnect" href="fonts.googleapis.com">
<link rel="stylesheet" href="/css/style.css">
<title>Meteor Client</title>

%sveltekit.head%
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/info.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<p>Online Players: {prettyNumber(stats.onlinePlayers)}</p>

<div class="buttons">
<a href="https://adfoc.us/81926897739205" target="_blank" class="button"><img src="/icons/download.svg" alt="download"> Meteor Client [{getLatestVersion()} - #{stats.builds[getLatestVersion()]}]</a>
<a href="https://adfoc.us/81926897739205" target="_blank" class="button"><img src="/icons/download.svg" alt="download" loading="lazy"> Meteor Client [{getLatestVersion()} - #{stats.builds[getLatestVersion()]}]</a>
<p>If you're looking for older versions of Meteor, check out the <a href="/archive">archive</a>.</p>
<a href="/api/downloadBaritone" target="_blank" class="button"><img src="/icons/download.svg" alt="download"> *Baritone [{stats.baritoneMcVersion}]</a>
<a href="/api/downloadBaritone" target="_blank" class="button"><img src="/icons/download.svg" alt="download" loading="lazy"> *Baritone [{stats.baritoneMcVersion}]</a>
</div>

<p>* Baritone is our <a href="https://github.com/MeteorDevelopment/baritone">fork</a> which was previously included in Meteor itself. If you want the most up to date version, or want help with Baritone go to the <a href="https://github.com/cabaletta/baritone">official sources</a>.</p>
Expand Down
6 changes: 3 additions & 3 deletions src/lib/components/navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</svelte:head>

<nav>
<a href="/" class="icon-link"><img src="/icon.png" alt="icon" class="icon"></a>
<a href="/" class="icon-link"><img src="/icon.webp" alt="icon" class="icon"></a>

{#if hamburger}
<button on:click={() => hamburgerOpen = !hamburgerOpen} use:clickOutside={() => hamburgerOpen = false} class="hamburger hamburger--collapse" class:is-active={hamburgerOpen} type="button">
Expand All @@ -44,7 +44,7 @@
{#if !hideProfile}
{#if $user}
<a class="user" href="/account">
<img src={$user.discordAvatar ? $user.discordAvatar : "/empty-profile.jpg"} alt="profile"/>
<img src={$user.discordAvatar ? $user.discordAvatar : "/empty-profile.webp"} alt="profile"/>
</a>
{:else}
<a href="/login"><button>Login</button></a>
Expand All @@ -69,7 +69,7 @@
{#if $user}
<a class="user" href="/account">
<p>{$user.username}</p>
<img src={$user.discordAvatar ? $user.discordAvatar : "/empty-profile.png"} alt="profile"/>
<img src={$user.discordAvatar ? $user.discordAvatar : "/empty-profile.webp"} alt="profile"/>
</a>
{:else}
<a href="/login"><button>Login</button></a>
Expand Down
12 changes: 6 additions & 6 deletions src/lib/components/team.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@

<div class="cont">
<div class="card">
<img src="minegame.jpg" alt="MineGame159">
<img src="minegame.webp" alt="MineGame159" loading="lazy">
<p><b>MineGame159</b></p>
<span>Owner / Head Developer</span>
</div>
<div class="card">
<img src="seasnail.jpg" alt="seasnail">
<img src="seasnail.webp" alt="seasnail" loading="lazy">
<p><b>seasnail</b></p>
<span>Developer</span>
</div>
</div>

<div class="cont">
<a href="/discord" target="_blank" class="button" style="background-color: var(--discord);"><img src="icons/discord.svg" alt="discord">Discord</a>
<a href="/github" target="_blank" class="button" style="background-color: var(--github);"><img src="icons/github.svg" alt="github">GitHub</a>
<a href="/youtube" target="_blank" class="button" style="background-color: var(--youtube);"><img src="icons/youtube.svg" alt="youtube">YouTube</a>
<a href="/donate" target="_blank" class="button" style="background-color: var(--paypal);"><img src="icons/paypal.svg" alt="donate">Donate</a>
<a href="/discord" target="_blank" class="button" style="background-color: var(--discord);"><img src="icons/discord.svg" alt="discord" loading="lazy">Discord</a>
<a href="/github" target="_blank" class="button" style="background-color: var(--github);"><img src="icons/github.svg" alt="github" loading="lazy">GitHub</a>
<a href="/youtube" target="_blank" class="button" style="background-color: var(--youtube);"><img src="icons/youtube.svg" alt="youtube" loading="lazy">YouTube</a>
<a href="/donate" target="_blank" class="button" style="background-color: var(--paypal);"><img src="icons/paypal.svg" alt="donate" loading="lazy">Donate</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/[404]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Navbar/>

<div>
<img src="icon.png" alt="icon">
<img src="icon.webp" alt="icon">
<h1>Page not found</h1>
</div>

Expand Down
Binary file added static/empty-profile.webp
Binary file not shown.
Binary file added static/icon.webp
Binary file not shown.
Binary file added static/minegame.webp
Binary file not shown.
Binary file added static/seasnail.webp
Binary file not shown.