💻 | Rename components

This commit is contained in:
2021-04-08 22:04:20 +02:00
parent 249c675db8
commit 09abc1ea9c
7 changed files with 5 additions and 5 deletions

46
src/components/AdHome.vue Normal file
View File

@@ -0,0 +1,46 @@
<template>
<div class="w-full my-12">
<div class="md:space-x-12 space-y-8 md:space-y-0 flex flex-col md:flex-row items-center justify-center">
<nuxt-link to="/uses" class="h-84 md:w-1/2">
<Ad color="rose" class="h-full w-full flex flex-col justify-between">
<div>
ILLUSTRATION
</div>
<div>
<h1 class="font-bold text-black text-3xl">
Usages
</h1>
<p class="text-lg text-gray-700 mt-4">
Venez decouvrir mon environnement de developpement
</p>
</div>
</Ad>
</nuxt-link>
<nuxt-link to="/contact" class="h-84 md:w-1/2">
<Ad color="blue" class="h-full w-full flex flex-col justify-between">
<div>
ILLUSTRATION
</div>
<div>
<h1 class="font-bold text-black text-4xl">
Vous avez un projet ?
</h1>
<p class="text-lg text-gray-700 mt-4">
Contactez moi en detaillant votre projet pour debuter notre collaboration.
</p>
</div>
</Ad>
</nuxt-link>
</div>
</div>
</template>
<script lang="ts">
export default {
name: "AdPreview"
}
</script>
<style scoped lang="scss">
</style>