IT4C.dev/docs/.vuepress/components/ContentSection.vue
Ulf Gebhardt d6be15ce0d
feat(other): eslint & prettier (#302)
* eslint

* eslint fixes

* fix footer

* install prettier

* fix prettier
2025-03-20 20:11:16 +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 />
</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>