update public site

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-02-06 09:53:43 +01:00
parent b2e8398943
commit d1f12ca5e8
7 changed files with 273 additions and 4 deletions

View File

@@ -13,6 +13,12 @@ export function Lead({ children, className }: Props) {
);
}
export function Lead2({ children, className }: Props) {
return (
<p className={cn('text-lg md:text-xl font-light', className)}>{children}</p>
);
}
export function Paragraph({ children, className }: Props) {
return <p className={cn('text-lg', className)}>{children}</p>;
}