Start flying section

This commit is contained in:
2026-01-23 15:19:35 -08:00
parent 30af32532c
commit ed7394cc49
35 changed files with 5611 additions and 8 deletions
+7
View File
@@ -11,3 +11,10 @@ export function classNames(
}
return classes.join(" ")
}
export function titlecase(s: string): string {
return s
.split(" ")
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
.join(" ")
}