Some changes

This commit is contained in:
Jonathan Bourdon
2024-06-25 00:50:49 -04:00
parent 0a9ae00867
commit 5d3429afb2
50 changed files with 3555 additions and 10927 deletions

View File

@@ -0,0 +1,37 @@
<template>
<div>
<v-img cover
max-height="375"
:src="imageSrc">
</v-img>
<PostContentMenu></PostContentMenu>
<div class="flex">
<RouterLink v-for="(post, index) in posts"
:key="index"
:to="post.routerLink"
class="bg-amber flex grow">
<PostCard :post="post"
class="m-2 bg-red w-full">
</PostCard>
</RouterLink>
</div>
</div>
</template>
<script setup>
import PostContentMenu from '@/views/main/PostContentMenu.vue'
import PostCard from "@/views/main/PostCard.vue"
import posts from "@/views/main/posts.json"
let imageSrc = '/images/usersmedia/guillaumeMousseau/banners/bannerGuillaumeMousseau01.png';
</script>
<style scoped>
</style>