v6 update

This commit is contained in:
Mohit Panjwani
2022-01-10 16:06:17 +05:30
parent b770e6277f
commit bdea879273
722 changed files with 19047 additions and 9186 deletions

View File

@ -0,0 +1,142 @@
<template>
<div
class="
grid
h-screen h-screen-ios
grid-cols-12
overflow-y-hidden
bg-gray-100
"
>
<NotificationRoot />
<div
class="
flex
items-center
justify-center
w-full
max-w-sm
col-span-12
p-4
mx-auto
text-gray-900
md:p-8 md:col-span-6
lg:col-span-4
flex-2
md:pb-48 md:pt-40
"
>
<div class="w-full">
<MainLogo class="block w-48 h-auto max-w-full mb-32 text-primary-500" />
<router-view />
<div
class="
pt-24
mt-0
text-sm
not-italic
font-medium
leading-relaxed
text-left text-gray-400
md:pt-40
"
>
<p class="mb-3">
Copyright @ Crater Invoice, Inc. {{ new Date().getFullYear() }}
</p>
</div>
</div>
</div>
<div
class="
relative
flex-col
items-center
justify-center
hidden
w-full
h-full
pl-10
bg-no-repeat bg-cover
md:col-span-6
lg:col-span-8
md:flex
content-box
overflow-hidden
"
>
<LoginBackground class="absolute h-full w-full" />
<LoginPlanetCrater
class="absolute z-10 top-0 right-0 h-[300px] w-[420px]"
/>
<LoginBackgroundOverlay class="absolute h-full w-full right-[7.5%]" />
<div class="pl-20 xl:pl-0 relative z-50">
<h1
class="
hidden
mb-3
text-3xl
leading-normal
text-left text-white
xl:text-5xl xl:leading-tight
md:none
lg:block
"
>
<b class="font-bold">Simple Invoicing</b> <br />
for Individuals & <br />
Small Businesses <br />
</h1>
<p
class="
hidden
text-sm
not-italic
font-normal
leading-normal
text-left text-gray-100
xl:text-base xl:leading-6
md:none
lg:block
"
>
Crater helps you track expenses, record payments & generate beautiful
<br />
invoices & estimates. <br />
</p>
</div>
<LoginBottomVector
class="
absolute
z-50
w-full
bg-no-repeat
content-bottom
h-[15vw]
lg:h-[22vw]
right-[32%]
bottom-0
"
/>
</div>
</div>
</template>
<script setup>
import NotificationRoot from '@/scripts/components/notifications/NotificationRoot.vue'
import MainLogo from '@/scripts/components/icons/MainLogo.vue'
import LoginBackground from '@/scripts/components/svg/LoginBackground.vue'
import LoginPlanetCrater from '@/scripts/components/svg/LoginPlanetCrater.vue'
import LoginBottomVector from '@/scripts/components/svg/LoginBottomVector.vue'
import LoginBackgroundOverlay from '@/scripts/components/svg/LoginBackgroundOverlay.vue'
</script>
<style lang="scss" scoped>
</style>