2020-05-26 10:38:43 +02:00
|
|
|
<script>
|
2020-05-27 12:54:53 +02:00
|
|
|
import Modal from "svelte-simple-modal"
|
2020-06-08 12:09:01 +02:00
|
|
|
import { Home as Link } from "@budibase/bbui"
|
2020-05-26 10:38:43 +02:00
|
|
|
import {
|
|
|
|
SettingsIcon,
|
|
|
|
AppsIcon,
|
|
|
|
UpdatesIcon,
|
|
|
|
HostingIcon,
|
|
|
|
DocumentationIcon,
|
|
|
|
TutorialsIcon,
|
|
|
|
CommunityIcon,
|
|
|
|
ContributionIcon,
|
|
|
|
BugIcon,
|
|
|
|
EmailIcon,
|
|
|
|
TwitterIcon,
|
|
|
|
} from "components/common/Icons/"
|
|
|
|
</script>
|
|
|
|
|
2020-05-27 12:54:53 +02:00
|
|
|
<Modal>
|
|
|
|
<div class="root">
|
|
|
|
<div class="ui-nav">
|
|
|
|
<div class="home-logo">
|
2020-06-04 12:56:01 +02:00
|
|
|
<img src="/_builder/assets/budibase-logo.svg" alt="Budibase icon" />
|
2020-05-27 12:54:53 +02:00
|
|
|
</div>
|
2020-05-26 10:38:43 +02:00
|
|
|
|
2020-05-27 12:54:53 +02:00
|
|
|
<div class="nav-section">
|
|
|
|
<div class="nav-section-title">Build</div>
|
2020-06-08 12:09:01 +02:00
|
|
|
<Link icon={AppsIcon} title="Apps" href="/" active />
|
|
|
|
<Link icon={SettingsIcon} title="Settings" href="/" />
|
|
|
|
<Link icon={UpdatesIcon} title="Updates" href="/" />
|
|
|
|
<Link icon={HostingIcon} title="Hosting" href="/" />
|
2020-05-26 10:38:43 +02:00
|
|
|
</div>
|
2020-05-27 12:54:53 +02:00
|
|
|
|
|
|
|
<div class="nav-section">
|
|
|
|
<div class="nav-section-title">Learn</div>
|
2020-06-08 12:09:01 +02:00
|
|
|
<Link icon={DocumentationIcon} title="Documentation" href="/" />
|
|
|
|
<Link icon={TutorialsIcon} title="Tutorials" href="/" />
|
|
|
|
<Link icon={CommunityIcon} title="Community" href="/" />
|
|
|
|
<Link icon={ContributionIcon} title="Contact" href="/" />
|
2020-05-26 10:38:43 +02:00
|
|
|
</div>
|
|
|
|
|
2020-05-27 12:54:53 +02:00
|
|
|
<div class="nav-section">
|
|
|
|
<div class="nav-section-title">Contact</div>
|
2020-06-08 12:09:01 +02:00
|
|
|
<Link
|
|
|
|
icon={ContributionIcon}
|
|
|
|
title="Contribute to our product"
|
|
|
|
href="/" />
|
|
|
|
<Link icon={BugIcon} title="Report bug" href="/" />
|
|
|
|
<Link icon={EmailIcon} title="Email" href="/" />
|
|
|
|
<Link icon={TwitterIcon} title="Twitter" href="/" />
|
2020-05-27 12:54:53 +02:00
|
|
|
</div>
|
2020-05-26 10:38:43 +02:00
|
|
|
</div>
|
|
|
|
|
2020-05-27 12:54:53 +02:00
|
|
|
<div class="main">
|
|
|
|
<slot />
|
2020-05-26 10:38:43 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-27 12:54:53 +02:00
|
|
|
</Modal>
|
2020-05-26 10:38:43 +02:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.root {
|
|
|
|
display: grid;
|
2020-05-29 19:31:47 +02:00
|
|
|
grid-template-columns: 300px 1fr;
|
2020-05-26 10:38:43 +02:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background: var(--grey-light);
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
grid-column: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-nav {
|
|
|
|
grid-column: 1;
|
|
|
|
background-color: var(--white);
|
|
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-05-26 16:25:37 +02:00
|
|
|
border-right: 1px solid var(--grey-medium);
|
2020-05-26 10:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.home-logo {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-logo img {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-section {
|
|
|
|
margin: 20px 0px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-section-title {
|
|
|
|
font-size: 20px;
|
|
|
|
color: var(--ink);
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
</style>
|