mirror of https://github.com/Budibase/budibase.git
15 changed files with 72 additions and 90 deletions
@ -0,0 +1,52 @@ |
|||
<script> |
|||
import Button from "components/common/Button.svelte" |
|||
export let apps |
|||
</script> |
|||
|
|||
<div class="root"> |
|||
<div class="inner"> |
|||
<img |
|||
src="/_builder/assets/budibase-logo.png" |
|||
class="logo" |
|||
alt="budibase logo" /> |
|||
<div> |
|||
<div> |
|||
<h4 style="margin-bottom: 20px">Choose an Application</h4> |
|||
{#each apps as app} |
|||
<a href={`/${app}`} class="app-link">{app}</a> |
|||
{/each} |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<style> |
|||
.root { |
|||
position: fixed; |
|||
margin: 0 auto; |
|||
text-align: center; |
|||
top: 20%; |
|||
/*color: #333333; |
|||
background-color: #fdfdfd;*/ |
|||
width: 100%; |
|||
} |
|||
|
|||
.inner { |
|||
display: inline-block; |
|||
margin: auto; |
|||
} |
|||
|
|||
.logo { |
|||
width: 300px; |
|||
margin-bottom: 40px; |
|||
} |
|||
|
|||
.root :global(.option) { |
|||
width: 250px; |
|||
} |
|||
|
|||
.app-link { |
|||
margin-top: 10px; |
|||
display: block; |
|||
} |
|||
</style> |
|||
@ -1,11 +1,11 @@ |
|||
<script> |
|||
import BackendNav from "../../../nav/BackendNav.svelte" |
|||
import SchemaManagementDrawer from "../../../nav/SchemaManagementDrawer.svelte" |
|||
import Database from "../../../database/DatabaseRoot.svelte" |
|||
import UserInterface from "../../../userInterface/UserInterfaceRoot.svelte" |
|||
import ActionsAndTriggers from "../../../actionsAndTriggers/ActionsAndTriggersRoot.svelte" |
|||
import AccessLevels from "../../../accessLevels/AccessLevelsRoot.svelte" |
|||
import ComingSoon from "../../../common/ComingSoon.svelte" |
|||
import BackendNav from "components/nav/BackendNav.svelte" |
|||
import SchemaManagementDrawer from "components/nav/SchemaManagementDrawer.svelte" |
|||
import Database from "components/database/DatabaseRoot.svelte" |
|||
import UserInterface from "components/userInterface/UserInterfaceRoot.svelte" |
|||
import ActionsAndTriggers from "components/actionsAndTriggers/ActionsAndTriggersRoot.svelte" |
|||
import AccessLevels from "components/accessLevels/AccessLevelsRoot.svelte" |
|||
import ComingSoon from "components/common/ComingSoon.svelte" |
|||
</script> |
|||
|
|||
<div class="root"> |
|||
@ -1,6 +1,6 @@ |
|||
<script> |
|||
import { goto } from "@sveltech/routify" |
|||
$goto("../backend") |
|||
// $goto("../backend") |
|||
</script> |
|||
|
|||
<!-- routify:options $index=false --> |
|||
Loading…
Reference in new issue