mirror of
https://github.com/ivabus/gui
synced 2025-06-08 00:00:27 +03:00
lint preflight
This commit is contained in:
parent
6ad7914caf
commit
6e2e7b8938
1 changed files with 9 additions and 4 deletions
|
@ -1,12 +1,17 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import '$appcss';
|
import '$appcss';
|
||||||
import Placeholder from '$components/Placeholder/Placeholder.svelte';
|
import { open } from '@tauri-apps/api/shell';
|
||||||
|
const openGithub = () => {
|
||||||
|
open('https://github.com/teaxyz');
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="card social-box" style="width: 100%; float:right;">
|
<div class="card social-box" style="width: 100%; float:right;">
|
||||||
<header class="text-primary border-b border-gray pt-7 pb-7 pl-5">PRE-FLIGHT</header>
|
<header class="border-b border-gray pt-7 pb-7 pl-5 text-primary">PRE-FLIGHT</header>
|
||||||
<div class="listbox-item border-b border-gray p-6">
|
<div class="listbox-item border-b border-gray p-6">
|
||||||
|
<a href="/cli">
|
||||||
<p>Install Tea</p>
|
<p>Install Tea</p>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="listbox-item border-b border-gray p-6">
|
<div class="listbox-item border-b border-gray p-6">
|
||||||
<div>
|
<div>
|
||||||
|
@ -14,7 +19,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="listbox-item p-6">
|
<div class="listbox-item p-6">
|
||||||
<p>Give tea a star</p>
|
<button on:click={openGithub}>Give tea a star</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue