diff --git a/frontend/src/components/layout/CardSection.vue b/frontend/src/components/layout/CardSection.vue index 9d7de46..a7453dc 100644 --- a/frontend/src/components/layout/CardSection.vue +++ b/frontend/src/components/layout/CardSection.vue @@ -52,6 +52,8 @@ interface Props { } const props = withDefaults(defineProps(), { + title: undefined, + description: undefined, variant: 'default', padding: 'md', }) diff --git a/frontend/src/components/layout/Section.vue b/frontend/src/components/layout/Section.vue index 751c733..d7f9bbe 100644 --- a/frontend/src/components/layout/Section.vue +++ b/frontend/src/components/layout/Section.vue @@ -41,6 +41,8 @@ interface Props { } const props = withDefaults(defineProps(), { + title: undefined, + description: undefined, spacing: 'md', })