initial commit

This commit is contained in:
2026-06-24 17:02:04 -04:00
commit d521c66903
50 changed files with 2519 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
export function SectionLabel({ children }: { children: React.ReactNode }) {
return (
<p className="text-xs font-semibold tracking-widest text-muted-foreground uppercase">
{children}
</p>
);
}