| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <LayoutContainer>
- <v-row>
- <v-col cols="4">
- <h3>L'agenda Opentalent</h3>
- </v-col>
- <v-col cols="4" />
- <v-col cols="4">
- <v-btn>Tous les évèvenements</v-btn>
- </v-col>
- </v-row>
- <v-row>
- <!-- slide card-->
- <v-col cols="4">
- <v-card>
- <v-img
- src="/images/logiciels/school/enseignement.jpg"
- class="enseignement"
- >
- <v-card-title class="title">
- Enseignement
- </v-card-title>
- </v-img>
- </v-card>
- </v-col>
- <v-col cols="4">
- <v-card>
- <v-img
- src="/images/logiciels/school/enseignement.jpg"
- class="enseignement"
- >
- <v-card-title class="title">
- Enseignement
- </v-card-title>
- </v-img>
- </v-card>
- </v-col>
- <v-col cols="4">
- <v-card>
- <v-img
- src="/images/logiciels/school/enseignement.jpg"
- class="enseignement"
- >
- <v-card-title class="title">
- Enseignement
- </v-card-title>
- </v-img>
- </v-card>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup></script>
- <style scoped></style>
|