IT4C.dev/docs/.vuepress/components/ContentSection.vue
2025-03-20 15:34:02 +01:00

31 lines
505 B
Vue

<template>
<section :id="id" :class="[backgroundColor]">
<div class="content-width">
<div class="py-16">
<h1>{{ title }}</h1>
<slot></slot>
</div>
</div>
</section>
</template>
<script>
export default {
name: 'ContentSection',
props: {
title: {
type: String,
required: true
},
backgroundColor: {
type: String,
default: 'bg-white dark:bg-gray-900'
},
id: {
type: String,
default: ''
}
}
}
</script>