-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from lu2000luk/main
Login wall & Refining UIs
- Loading branch information
Showing
14 changed files
with
134 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ node_modules | |
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* | ||
pnpm-lock.yaml | ||
/.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<script> | ||
import { FallingConfetti } from 'svelte-canvas-confetti'; | ||
import {tick} from 'svelte'; | ||
import { particle_count } from '$lib/settings'; | ||
let fallingConfetti = false; | ||
const makeFallingConfetti = async () => { | ||
fallingConfetti = false; | ||
await tick(); | ||
fallingConfetti = true; | ||
} | ||
</script> | ||
|
||
{#if fallingConfetti} | ||
<FallingConfetti particleCount={$particle_count} /> | ||
{/if} | ||
|
||
<!-- svelte-ignore a11y-no-static-element-interactions --> | ||
<!-- svelte-ignore a11y-click-events-have-key-events --> | ||
<span class="beta_icon bg-gradient-to-r from-violet-600 to-indigo-600 px-2 py-1 cursor-pointer rounded-full select-none" on:click={makeFallingConfetti}>Beta</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<h1> | ||
Coming soon... | ||
<h1 class="flex justify-center w-full h-full flex-col items-center text-3xl"> | ||
<span class="p-6 rounded-lg bg-gradient-to-r from-violet-900 to-red-600">Coming soon...</span> | ||
</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script> | ||
import Beta from '$lib/components/beta.svelte'; | ||
</script> | ||
|
||
<div class="flex justify-center mt-8"> | ||
<p class="text-3xl mb-2"> | ||
ETB Rocket <span class="py-1 text-4xl select-none bg-gradient-to-r from-green-600 to-yellow-600 cursor-pointer flex items-center justify-center bg-black bg-opacity-35 rounded-lg">π</span> | ||
</p> | ||
</div> | ||
|
||
<div class="flex justify-center mt-2"> | ||
<p> | ||
With the ETBR-PI system. With this new <Beta /> system your huge mods (over 1gb) will be download at blazingly fast speeds! | ||
</p> | ||
</div> | ||
|
||
<div class="flex justify-center mt-5"> | ||
<i> | ||
*I know you where expecting a big start now button or something but this thing has not been developed yet* | ||
</i> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.