feat: course details page design

This commit is contained in:
Jannat Patel
2023-12-13 10:33:34 +05:30
parent d4671fb888
commit c50f2147fd
11 changed files with 340 additions and 35 deletions

View File

@@ -0,0 +1,27 @@
<template>
<div class="shadow rounded-md">
<div>
{{ batch.title }}
</div>
<div>
{{ batch.description }}
</div>
<div>
<Calendar class="h-4 w-4 stroke-1" />
{{ batch.start_date }} - {{ batch.end_date }}
</div>
<div>
<Clock class="h-4 w-4 stroke-1" />
{{ batch.start_time }} - {{ batch.end_time }}
</div>
</div>
</template>
<script setup>
import { Calendar, Clock } from "lucide-vue-next"
const props = defineProps({
batch: {
type: Object,
default: null,
},
});
</script>