feat(SW-190): added hero to static content pages

This commit is contained in:
Erik Tiekstra
2024-08-14 09:29:00 +02:00
parent f1ca9a0704
commit 8220a39a8f
23 changed files with 351 additions and 64 deletions

View File

@@ -1,3 +1,9 @@
export interface MaxWidthProps extends React.HTMLAttributes<HTMLElement> {
import { VariantProps } from "class-variance-authority"
import { maxWidthVariants } from "@/components/MaxWidth/variants"
export interface MaxWidthProps
extends React.HTMLAttributes<HTMLElement>,
VariantProps<typeof maxWidthVariants> {
tag?: "article" | "div" | "main" | "section"
}

View File

@@ -4,6 +4,7 @@ import type { Lang } from "@/constants/languages"
export enum TrackingChannelEnum {
"scandic-friends" = "scandic-friends",
"static-content-page" = "static-content-page",
}
export type TrackingChannel = keyof typeof TrackingChannelEnum