Initial release

This commit is contained in:
2025-11-23 20:42:56 +01:00
commit 721217a8e3
130 changed files with 7099 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { useEffect } from "react";
export default function useTitle(title: string) {
useEffect(() => {
document.title = `URL Shortener - ${title}`;
}, [title]);
}