Pull up features from manifold.love

This commit is contained in:
MartinBraquet committed 2025-08-27 21:30:05 +02:00
1 parent 078893f7d1
commit 53432520cd
582 files changed
+64062 -9624

No files matched your search

+18
View File
@@ -0,0 +1,18 @@
import clsx from 'clsx'
export function Subtitle(props: {
children: React.ReactNode
className?: string
}) {
const { children: text, className } = props
return (
<h2
className={clsx(
'text-primary-700 mb-2 mt-6 inline-block text-lg sm:mb-2 sm:mt-6 sm:text-xl',
className
)}
>
{text}
</h2>
)
}