chore: minor fixes and improvements

This commit is contained in:
liyasthomas
2021-08-24 13:45:11 +05:30
parent 12c28f4efc
commit c5f8ab3394
15 changed files with 129 additions and 108 deletions

View File

@@ -3,6 +3,7 @@
<div class="flex flex-col mt-16 items-center justify-center">
<h2
class="
font-bold
text-accent text-center
leading-none
tracking-tighter
@@ -15,6 +16,7 @@
</h2>
<h3
class="
font-extrabold
my-4
text-center text-secondaryDark
leading-none
@@ -35,7 +37,6 @@
<ButtonPrimary
label="Get Started"
icon="arrow_forward"
rounded
reverse
large
@click.native="showLogin = true"
@@ -43,17 +44,17 @@
<ButtonSecondary
to="https://github.com/hoppscotch/hoppscotch"
blank
filled
outline
label="GitHub"
svg="github"
large
rounded
:shortcut="['30k Stars']"
/>
</div>
<!-- <LandingStats /> -->
<LandingStats />
<LandingScreenshot />
</div>
<div class="flex flex-col items-center justify-center"></div>
<FirebaseLogin :show="showLogin" @hide-modal="showLogin = false" />
</div>
</template>

View File

@@ -0,0 +1,19 @@
<template>
<div
class="
bg-gradient-to-r
from-gradientFrom
via-gradientVia
to-gradientTo
flex flex-col
items-center
justify-center
"
>
<img
src="images/screenshots/light_rest.png"
alt="Screenshot"
class="rounded-lg ring-dividerLight mt-8 max-w-5/6 ring-4"
/>
</div>
</template>