refactor(ui): introduce landing page + minor fixes

This commit is contained in:
liyasthomas
2021-07-19 18:42:33 +05:30
parent f1ad7b9ef5
commit 68c00433f5
17 changed files with 162 additions and 124 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="flex font-mono space-x-16 p-4">
<div class="flex font-mono space-x-16 p-6">
<div v-for="(stat, index) in stats" :key="`stat-${index}`">
<span class="font-bold text-xl">
{{ stat.count }}<span class="text-secondaryLight">+</span>
@@ -18,7 +18,7 @@ export default {
return {
stats: [
{ count: "350k", audience: "Developers" },
{ count: "10k", audience: "Organizations" },
{ count: "5k", audience: "Organizations" },
{ count: "1m", audience: "Requests" },
],
}