forked from nikita/muzika-gromche
25 lines
437 B
Vue
25 lines
437 B
Vue
<script setup lang="ts">
|
|
const {
|
|
title,
|
|
description,
|
|
} = defineProps<{
|
|
title: string
|
|
description: string | null
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="tw:h-full tw:flex tw:flex-col">
|
|
<div class="tw:w-full tw:max-w-2xl tw:self-center">
|
|
<h1 class="tw:text-4xl tw:p-8">
|
|
{{ title }}
|
|
</h1>
|
|
<p class="tw:p-4">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|