Commit Roast My Website

This commit is contained in:
Eric Ciarla
2024-06-02 20:40:19 -07:00
parent ea04fe2e3f
commit 3ea801d9dd
40 changed files with 7954 additions and 0 deletions
@@ -0,0 +1,5 @@
export async function useGithubStars() {
const res = await fetch("https://api.github.com/repos/mendableai/firecrawl");
const data = await res.json();
return data.stargazers_count;
}