import clsx from 'clsx'; import { tokens } from "@/app/styles/design-tokens"; interface SectionHeadingProps { children: React.ReactNode; subheading?: React.ReactNode; } export function SectionHeading({ children, subheading }: SectionHeadingProps) { return (
{subheading}
)}