diff --git a/assets/landing/AGPLv3_Logo.svg b/assets/landing/AGPLv3_Logo.svg new file mode 100644 index 0000000..c38c092 --- /dev/null +++ b/assets/landing/AGPLv3_Logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/landing/downloads.png b/assets/landing/downloads.png new file mode 100644 index 0000000..2511984 Binary files /dev/null and b/assets/landing/downloads.png differ diff --git a/assets/landing/rewards.png b/assets/landing/rewards.png new file mode 100644 index 0000000..56a734e Binary files /dev/null and b/assets/landing/rewards.png differ diff --git a/assets/landing/websocket.svg b/assets/landing/websocket.svg new file mode 100644 index 0000000..021b6d0 --- /dev/null +++ b/assets/landing/websocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index 8d9cc8c..96b02ef 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -14,42 +14,72 @@
-
One API for everything
-

- Build overlays and tooling with easy access to Twitch alerts, chat - messages and more through a single websocket interface. -

+
+
+
One API for everything
+

+ Build overlays and tooling with easy access to Twitch alerts, chat + messages and more through a single websocket interface. +

+
+ {{ $image := resources.Get "landing/websocket.svg" }} + +
-
No Twitch Affiliate?
-

- Our loyalty system lets regular viewers accrue points, claim rewards - and contribute towards community goals. -

+
+ {{ $image := resources.Get "landing/rewards.png" }} + +
+
No Twitch Affiliate?
+

+ Our loyalty system lets regular viewers accrue points, claim + rewards and contribute towards community goals. +

+
+
-
Keep total control
-

- strimertül runs completely in your computer and has no remote - components. -

+
+
+
Keep total control
+

+ strimertül runs completely in your computer and has no remote + components. +

+
+ {{ $image := resources.Get "landing/downloads.png" }} + +
-
Won't turn evil
-

- strimertül is licensed under - AGPLv3, a strong - copyleft license, - meaning we couldn't close it down even if we wanted! -

+
+ {{ $image := resources.Get "landing/AGPLv3_Logo.svg" }} + +
+
Won't turn evil
+

+ strimertül is licensed under + AGPLv3, a strong + copyleft license, meaning we couldn't close it down even if we wanted! +

+
+
diff --git a/themes/strimertul/assets/scss/landing.scss b/themes/strimertul/assets/scss/landing.scss index d9a62cf..6f6fcec 100644 --- a/themes/strimertul/assets/scss/landing.scss +++ b/themes/strimertul/assets/scss/landing.scss @@ -4,6 +4,22 @@ margin: 0 auto; width: 100%; } + .flex { + display: flex; + gap: 30px; + padding: 10px 0; + .flex-copy { + flex: 1; + } + } + .landing-point { + width: 300px; + opacity: 0.8; + + @media only screen and (max-width: $mobile) { + display: none; + } + } .features { display: flex; flex-direction: column; @@ -24,8 +40,9 @@ display: flex; align-items: flex-end; font-weight: bold; - font-size: 18px; + font-size: 20px; padding-top: 10px; + padding-bottom: 5px; } } }