diff --git a/html/landing.ejs b/html/landing.ejs index d813c062..c0984e4e 100644 --- a/html/landing.ejs +++ b/html/landing.ejs @@ -150,45 +150,28 @@ -

Why Choose Poke Lol?

-
-
-
- -

No Tracking and Ads

-
-

Poke Has no Trackers or ads - we dont and we wont see the vids ur watching :3

-
-
-
- -

Very Fast

-
-

Poke is really ligthweight (both on server and client :3) so you can still use it on poor connections :3

-
-
-
- -

Downloader

-
-

You wouldnt download a car - welp i would :D u can download videos from poke for 0$!

-
- -
-
- -

DRM Free

-
-

Poke comes without digital restrictions management - poke is free software :3

-
-
-
- -

Games Included

-
-

U can play funnie games on poke!

-
+

3 Top Features of poke lol

+ <% +const features = [ + { title: "No Tracking and Ads", description: "Poke Has no Trackers or ads - we dont and we wont see the vids ur watching :3", icon: "" }, + { title: "Very Fast", description: "Poke is really ligthweight (both on server and client :3) so you can still use it on poor connections :3", icon: "" }, + { title: "Downloader", description: "You wouldnt download a car - welp i would :D u can download videos from poke for 0$!", icon: "" }, + { title: "DRM Free", description: "Poke comes without digital restrictions management - poke is free software :3", icon: "" }, + { title: "Games Included", description: "U can play funnie games on poke!", icon: "" } +]; + +const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3); +%> + +
+ <% randomFeatures.forEach(feature => { %> +
+
<%= feature.icon %>
+

<%= feature.title %>

+

<%= feature.description %>

+ <% }) %> +
<%- include('./partials/card',