fix: add next level perks block

This commit is contained in:
Christel Westerberg
2024-04-11 16:02:30 +02:00
parent c398309cdd
commit 85b83bc58b
15 changed files with 182 additions and 103 deletions

View File

@@ -1,5 +1,8 @@
import type { User } from "@/types/user"
import { ReactNode } from "react"
export type ShortcutsProps = {
shortcuts: User["shortcuts"]
title: string | ReactNode
subtitle?: string
}

View File

@@ -1,4 +1,4 @@
type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"
type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5"
export interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
as?: HeadingLevel