mirror of https://github.com/Budibase/budibase.git
6 changed files with 55 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||
<script> |
|||
import { Body, Button, Layout, Heading } from "@budibase/bbui" |
|||
import { flags } from "stores/backend" |
|||
|
|||
function openFeedbackApp() { |
|||
window.open(`https://bb.budibase.app/betauifeedback`) |
|||
} |
|||
|
|||
async function revertToOldBuilder() { |
|||
await flags.toggleUiFeature("design_ui") |
|||
window.location.reload() |
|||
} |
|||
</script> |
|||
|
|||
<Layout> |
|||
<Heading size="M">Beta Builder</Heading> |
|||
<Body> |
|||
Your account has been given access to the budibase beta program. We would |
|||
love to hear what you think and get your feedback and suggestions on the new |
|||
Design UI. |
|||
</Body> |
|||
<Button cta on:click={openFeedbackApp}>Give Feedback</Button> |
|||
<Button secondary on:click={revertToOldBuilder} |
|||
>Revert back to old builder</Button |
|||
> |
|||
</Layout> |
|||
@ -0,0 +1,8 @@ |
|||
<script> |
|||
import { Layout } from "@budibase/bbui" |
|||
</script> |
|||
|
|||
<!-- routify:options index=5 --> |
|||
<Layout gap="S" justifyItems="center"> |
|||
<slot /> |
|||
</Layout> |
|||
@ -0,0 +1,5 @@ |
|||
<script> |
|||
import BetaTab from "components/beta/BetaTab.svelte" |
|||
</script> |
|||
|
|||
<BetaTab /> |
|||
Loading…
Reference in new issue