init from gitlab

This commit is contained in:
texm
2023-04-25 14:33:14 +08:00
parent 6a85a41ff0
commit c8202a5c82
281 changed files with 19861 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<script>
import {base} from "$app/paths";
import Icons from "./Icons.svelte";
const demoUrl = "https://demo.example.com"
</script>
<div class="hero h-full">
<div class="hero-content text-center flex-col py-10 px-0">
<div class="max-w-md mb-4">
<h1 class="text-5xl font-bold mb-2">A web interface for Dokku</h1>
<p class="text-xl">
an open-source self-hostable web UI to help
<strong>configure</strong> and <strong>deploy</strong>
your apps and services with <a class="link" href="https://dokku.com/">Dokku</a>
</p>
<div class="flex flex-col gap-4 mb-4 p-4">
<Icons />
</div>
<div class="flex flex-row gap-4 justify-center">
<a href="{base}/docs">
<button class="btn btn-primary text-primary-content">Get Started</button>
</a>
<a href={demoUrl}>
<button class="btn btn-secondary text-secondary-content">Try the Demo</button>
</a>
</div>
</div>
</div>
</div>