mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-12 17:05:50 +00:00
31 lines
505 B
Vue
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>
|