forked from runme-io/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: close down website (runme-io#183)
- Loading branch information
Showing
12 changed files
with
6 additions
and
590 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +0,0 @@ | ||
<script> | ||
import { menuItems } from '../../Data/menu' | ||
export let textColorLight = false | ||
let textColorClass = textColorLight ? 'light' : '' | ||
const items = menuItems | ||
</script> | ||
|
||
<nav class="{textColorClass}"> | ||
<ul> | ||
{#each items as item} | ||
<li><a target={item.newWindow ? 'target="_blank"' : null} href={item.link}>{item.label}</a></li> | ||
{/each} | ||
</ul> | ||
</nav> | ||
|
||
<style lang="sass"> | ||
@import "../../assets/style/theme" | ||
nav | ||
font-family: $font-family-jexia | ||
font-size: 1.4rem | ||
text-align: center | ||
ul | ||
display: inline-block | ||
list-style: none | ||
li | ||
display: inline-block | ||
padding: 0 .5rem | ||
&:not(:last-child) | ||
&:after | ||
content: '|' | ||
padding-left: 1rem | ||
color: $gray | ||
a | ||
color: $gray | ||
nav.light | ||
a | ||
color: $white | ||
text-decoration: none | ||
</style> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,13 @@ | ||
<script context="module"> | ||
import DockerImages from '../components/Stores/DockerImages' | ||
export async function preload () { | ||
const res = await this.fetch('data/docker-images.json') | ||
const dockerImages = await res.json() | ||
DockerImages.set(dockerImages) | ||
} | ||
</script> | ||
|
||
<script> | ||
import RunmeButton from '../components/Runme/RunmeButton.svelte' | ||
import GenerateForm from '../components/Runme/GenerateForm.svelte' | ||
import GenerateResult from '../components/Runme/GenerateResult.svelte' | ||
import MainLayout from '../components/UI/Layout/MainLayout.svelte' | ||
import { generateSpec } from '../Helpers' | ||
let showResult = false | ||
let spec | ||
async function generate ({ detail: success }) { | ||
showResult = success | ||
spec = null // unassign before assign again, otherwise the component doesn't rerender new values | ||
spec = await generateSpec() | ||
} | ||
</script> | ||
|
||
<style lang="sass"> | ||
@import "./assets/style/theme" | ||
.generator-page | ||
padding-top: 6rem | ||
width: 75% | ||
margin: 0 auto | ||
@media screen and (max-width: 800px) | ||
width: 100% | ||
h1 | ||
text-align: center | ||
font-size: 2.5rem | ||
.generator | ||
padding-top: $spacing | ||
</style> | ||
<MainLayout title="About"> | ||
<div class="main-content"> | ||
<h1>Hello!</h1> | ||
|
||
<MainLayout | ||
showTechnologyIcons={true} | ||
title="Run your application from any public Git-repo with one click" | ||
> | ||
<div class="generator-page"> | ||
<h1>Generate <RunmeButton/> button for your repo.</h1> | ||
<section class="generator"> | ||
<GenerateForm on:generate={generate} /> | ||
<p>Dear partners, Runme service transformed into different service and not available for public anymore.</p> | ||
|
||
<GenerateResult | ||
isVisible={showResult} | ||
{spec} | ||
/> | ||
</section> | ||
<p>Thank you for interest and your understanding!</p> | ||
</div> | ||
</MainLayout> |
Oops, something went wrong.