36 lines
738 B
Vue
36 lines
738 B
Vue
<template>
|
|
|
|
<div>
|
|
|
|
<v-img max-height="375"
|
|
src="images/usersmedia/HutopyProfile/banners/banner01.png"
|
|
cover>
|
|
</v-img>
|
|
|
|
<div class="text-5xl font-semibold text-center py-10">
|
|
CRÉATEURS
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2">
|
|
<RouterLink v-for="(creator, index) in creators"
|
|
:key="index"
|
|
:to="creator.routerLink">
|
|
<CreatorCard :creator="creator"
|
|
class="m-2">
|
|
</CreatorCard>
|
|
</RouterLink>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import CreatorCard from "@/views/main/CreatorCard.vue";
|
|
import creators from "@/views/main/creators.json"; // Import the JSON file
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style> |