31 lines
486 B
Vue
31 lines
486 B
Vue
<template>
|
|
<div>
|
|
<Card
|
|
title="Who Am I ?"
|
|
bg="question.png"
|
|
></Card>
|
|
<Card
|
|
title="Technos I use"
|
|
bg="legos_vrac.png"
|
|
></Card>
|
|
<Card
|
|
title="Projects"
|
|
bg="legos_maison.jpg"
|
|
></Card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
//import Card_WhoAmI from './Card_WhoAmI.vue';
|
|
import Card from './Card.vue';
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
div{
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
</style> |