From f75ba86eb3584d35112d90ca360f67d84dcea1d1 Mon Sep 17 00:00:00 2001 From: Matija Sosic Date: Sat, 20 Apr 2019 15:18:01 +0200 Subject: [PATCH] Added landing page. (#14) --- landing-page/.gitignore | 21 ++++++ landing-page/assets/stic-logo.png | Bin 0 -> 1736 bytes landing-page/index.html | 111 ++++++++++++++++++++++++++++++ landing-page/main.css | 4 ++ landing-page/package-lock.json | 18 +++++ landing-page/package.json | 15 ++++ 6 files changed, 169 insertions(+) create mode 100644 landing-page/.gitignore create mode 100644 landing-page/assets/stic-logo.png create mode 100644 landing-page/index.html create mode 100644 landing-page/main.css create mode 100644 landing-page/package-lock.json create mode 100644 landing-page/package.json diff --git a/landing-page/.gitignore b/landing-page/.gitignore new file mode 100644 index 000000000..d30f40ef4 --- /dev/null +++ b/landing-page/.gitignore @@ -0,0 +1,21 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/landing-page/assets/stic-logo.png b/landing-page/assets/stic-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..10d315ed7199985a7358b15281f2a0b32029ae31 GIT binary patch literal 1736 zcmeAS@N?(olHy`uVBq!ia0y~yU@Qf)7jUov$%? zhEy=Vz2@i_6UgK0c;Z+>dJb>cwajCU6H{;Q)LY_H_27H#w7yTD9`!RYGO=(7C^$4= zWgKUTJN&)2`rY?^ImgdG|6Zf}TW!8`14H9~rw5OJPVGkt$1E?P8G?*~@`>LyfLf|p zT=pKn8Ul1k4@bu@j@|A+Efql7TFzo z7YNkyg`=aYfAvbBeG)+X1k3t?S{ArFT&a%n1=@F@qhUq=hH8+@Y?&6_dz_^;>coKz z#khLO-#?y~+Y19z+yS}9dZ~Byud4eVdjpeTfSABnqlJvXh`a%e`|7-hqk^;y5KxwH ztZD3j-UZIan!nEfzq0szwj~qGI?j$?Tf1*hXK2h|4D7dC|CB>uhnm8x>w0pqB-nk+c z4j-;Pw(|A!|1`+o`&aYt+ty&U*6R0&vLd*mGj9dOU7SCC`2v{{Sc)I$ztaD0e F0szKNiY)*D literal 0 HcmV?d00001 diff --git a/landing-page/index.html b/landing-page/index.html new file mode 100644 index 000000000..afbc19c5a --- /dev/null +++ b/landing-page/index.html @@ -0,0 +1,111 @@ + + + + + + + + + + + +
+ + +
+
+
+

+ STIC +

+

+ An extensible DSL for building modern web applications. +

+
+
+
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+
+

Easy to start

+

+ Start building your web app lightning fast! Minimal configuration and + a declarative approach. +

+
+
+
+
+

Best practices

+

+ STIC produces real javascript code which looks like it was + handwritten by a senior engineer, using the industry best practices. +

+
+
+
+
+

Eject anytime

+

+ No risk of a lock-in effect - if STIC can no longer satisfy your + app's requirements simply eject the project with all the source code + and continue yourself. +

+
+
+
+
+
+ + + + + diff --git a/landing-page/main.css b/landing-page/main.css new file mode 100644 index 000000000..d8f3984e7 --- /dev/null +++ b/landing-page/main.css @@ -0,0 +1,4 @@ +img.logo { + height: auto; + max-width: 100%; +} diff --git a/landing-page/package-lock.json b/landing-page/package-lock.json new file mode 100644 index 000000000..4ef2d8304 --- /dev/null +++ b/landing-page/package-lock.json @@ -0,0 +1,18 @@ +{ + "name": "sticlandingpage", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "bulma": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.7.4.tgz", + "integrity": "sha512-krG2rP6eAX1WE0sf6O0SC/FUVSOBX4m1PBC2+GKLpb2pX0qanaDqcv9U2nu75egFrsHkI0zdWYuk/oGwoszVWg==" + }, + "bulma-start": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/bulma-start/-/bulma-start-0.0.3.tgz", + "integrity": "sha512-LJchFdLKUAavS4c8qELN+5FoOicttX8fi1+M2mLZQyf+ru8tcooqQ3j9kdJq1p/FeVyfOLi4vtXP1b3k4tQdtA==" + } + } +} diff --git a/landing-page/package.json b/landing-page/package.json new file mode 100644 index 000000000..8168b59e1 --- /dev/null +++ b/landing-page/package.json @@ -0,0 +1,15 @@ +{ + "name": "sticlandingpage", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "bulma": "^0.7.4", + "bulma-start": "0.0.3" + } +}