From bea98a7de80bc3eea6677f46d34c83215d6546cc Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Fri, 16 May 2025 02:33:56 +0530 Subject: [PATCH] update sponsor link --- README.md | 2 +- apps/cli/README.md | 2 +- apps/web/src/app/(home)/_components/sponsors-section.tsx | 4 +--- apps/web/src/app/(home)/_components/stack-builder.tsx | 4 +--- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9be6f27..0ef392f 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Just fork the repository and submit a pull request! ## Sponsors

-Sponsors +Sponsors

## Star History diff --git a/apps/cli/README.md b/apps/cli/README.md index 9234b44..84c56fc 100644 --- a/apps/cli/README.md +++ b/apps/cli/README.md @@ -145,5 +145,5 @@ After project creation, you'll receive detailed instructions for next steps and ## Sponsors

-Sponsors +Sponsors

diff --git a/apps/web/src/app/(home)/_components/sponsors-section.tsx b/apps/web/src/app/(home)/_components/sponsors-section.tsx index a7870d6..a486a7b 100644 --- a/apps/web/src/app/(home)/_components/sponsors-section.tsx +++ b/apps/web/src/app/(home)/_components/sponsors-section.tsx @@ -10,9 +10,7 @@ export default function SponsorsSection() { const [sponsorError, setSponsorError] = useState(null); useEffect(() => { - fetch( - "https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.json", - ) + fetch("https://sponsors.amanv.dev/sponsors.json") .then((res) => { if (!res.ok) throw new Error("Failed to fetch sponsors"); return res.json(); diff --git a/apps/web/src/app/(home)/_components/stack-builder.tsx b/apps/web/src/app/(home)/_components/stack-builder.tsx index 9028d82..432f3b3 100644 --- a/apps/web/src/app/(home)/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/_components/stack-builder.tsx @@ -1421,9 +1421,7 @@ const StackBuilder = () => { }, [stack.projectName]); useEffect(() => { - fetch( - "https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.json", - ) + fetch("https://sponsors.amanv.dev/sponsors.json") .then((res) => { if (!res.ok) throw new Error("Failed to fetch sponsors"); return res.json();