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
-
+
## 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
-
+
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();