diff --git a/apps/scandic-web/components/ContentType/DestinationPage/SeoFilters/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/SeoFilters/index.tsx
index f7913fc87..039aa7986 100644
--- a/apps/scandic-web/components/ContentType/DestinationPage/SeoFilters/index.tsx
+++ b/apps/scandic-web/components/ContentType/DestinationPage/SeoFilters/index.tsx
@@ -38,10 +38,11 @@ export function SeoFilters({ seoFilters, location }: SeoFiltersProps) {
{ location }
)}
showAsSubtitle
+ titleLevel="h3"
>
{facilityFilters.map(({ filter }) => (
- -
+
-
{surroundingsFilters.map(({ filter }) => (
- -
+
-
,
VariantProps {
title: string
+ titleLevel?: 'span' | 'p' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'
iconName?: IconName
icon?: ReactNode
subtitle?: string
@@ -29,6 +30,7 @@ export default function AccordionItem({
icon,
iconName,
title,
+ titleLevel = 'p',
type,
className,
subtitle,
@@ -70,6 +72,8 @@ export default function AccordionItem({
}
}
+ const TitleLevel = titleLevel
+
return (
-
@@ -83,11 +87,11 @@ export default function AccordionItem({
{subtitle || showAsSubtitle ? (
- {title}
+ {title}
) : (
- {title}
+ {title}
)}
{subtitle && (