This commit is contained in:
2025-08-22 18:45:01 +02:00
parent 802d47b813
commit 699e3a580e
5 changed files with 90 additions and 49 deletions

View File

@@ -30,15 +30,29 @@ export function H2({ className, children, ...props }) {
export function H3({ className, children, ...props }) {
return (
<h2
<h3
className={clsx(
'mt-8 text-xl font-medium tracking-tight text-bg-darkbrown sm:text-2xl',
'mt-8 text-xl font-medium tracking-tight text-bg-darkbrown lg:text-2xl',
className
)}
{...props}
>
{children}
</h2>
</h3>
)
}
export function H4({ className, children, ...props }) {
return (
<h4
className={clsx(
'text-base font-medium tracking-tight text-bg-darkbrown lg:text-lg',
className
)}
{...props}
>
{children}
</h4>
)
}
@@ -60,7 +74,21 @@ export function PS({ className, children, ...props }) {
return (
<p
className={clsx(
'mt-4 text-base text-gray-700 font-extralight leading-snug',
'text-base text-gray-700 font-extralight leading-snug',
className
)}
{...props}
>
{children}
</p>
)
}
export function PXS({ className, children, ...props }) {
return (
<p
className={clsx(
'text-base/8 text-gray-700 font-extralight leading-snug',
className
)}
{...props}