smart-lookup/app.vue
Georges KABBOUCHI 09087a50e8 wip0
2022-06-09 18:59:24 +03:00

28 lines
622 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<Html class="h-full bg-gray-50">
<Body class="h-full" />
</Html>
<div
class="min-h-full flex flex-col items-center justify-center py-12 sm:px-6 lg:px-8"
>
<NuxtLink to="/" class="mt-5 text-center text-3xl font-extrabold text-gray-900">
Smart Lookup
</NuxtLink>
<div class="w-full mt-5">
<NuxtPage />
</div>
<div class="mt-5">
Made with by
<a
href="https://instadapp.io"
class="hover:underline font-medium"
target="_blank"
rel="noopener noreferrer"
>Instadapp</a
>
</div>
</div>
</template>