diff --git a/public/assets/styles/style.css b/public/assets/styles/style.css index 8d21911..f765825 100644 --- a/public/assets/styles/style.css +++ b/public/assets/styles/style.css @@ -757,6 +757,11 @@ video { border-width: 8px; } +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgb(219 234 254 / var(--tw-bg-opacity)); +} + .bg-blue-500 { --tw-bg-opacity: 1; background-color: rgb(59 130 246 / var(--tw-bg-opacity)); @@ -767,10 +772,25 @@ video { background-color: rgb(243 244 246 / var(--tw-bg-opacity)); } +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity)); +} + .bg-inherit { background-color: inherit; } +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity)); +} + +.bg-sky-50 { + --tw-bg-opacity: 1; + background-color: rgb(240 249 255 / var(--tw-bg-opacity)); +} + .bg-white { --tw-bg-opacity: 1; background-color: rgb(255 255 255 / var(--tw-bg-opacity)); diff --git a/src/common/index.ejs b/src/common/index.ejs index 14a3bc7..d6f9d53 100644 --- a/src/common/index.ejs +++ b/src/common/index.ejs @@ -1,5 +1,12 @@ <%- include(commonPath + '/header.ejs') %> +<% const scenarioButton = (title, link) => { %> + + <%= title %> + +<% } %> +
Logo @@ -8,35 +15,14 @@

Scenarios

- - 🔎 Analytics Tracking - - - 📽️ Embedded Content - - - 🛒 E-Commerce - - - 🔐 Single Sign-On - - - 💳 Payment Gateway - + <%= scenarioButton('🔎 Analytics Tracking', '/analytics') %> + <%= scenarioButton('📽️ Embedded Content', '/embedded-video') %> + <%= scenarioButton('🛒 E-Commerce', '/ecommerce') %> + <%= scenarioButton('🔐 Single Sign-On', '/single-sign-on') %> + <%= scenarioButton('💳 Payment Gateway', '/payment-gateway') %> + <%= scenarioButton('🍪 CHIPS', '/chips') %>
-

API Demos

-
<%- include(commonPath + '/footer.ejs') %>