mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
update sponsor link
This commit is contained in:
@@ -64,7 +64,7 @@ Just fork the repository and submit a pull request!
|
|||||||
## Sponsors
|
## Sponsors
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.svg" alt="Sponsors" width="300">
|
<img src="https://sponsors.amanv.dev/sponsors.svg" alt="Sponsors" width="300">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## Star History
|
## Star History
|
||||||
|
|||||||
@@ -145,5 +145,5 @@ After project creation, you'll receive detailed instructions for next steps and
|
|||||||
## Sponsors
|
## Sponsors
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.svg" alt="Sponsors" width="300">
|
<img src="https://sponsors.amanv.dev/sponsors.svg" alt="Sponsors" width="300">
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -10,9 +10,7 @@ export default function SponsorsSection() {
|
|||||||
const [sponsorError, setSponsorError] = useState<string | null>(null);
|
const [sponsorError, setSponsorError] = useState<string | null>(null);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetch(
|
fetch("https://sponsors.amanv.dev/sponsors.json")
|
||||||
"https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.json",
|
|
||||||
)
|
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (!res.ok) throw new Error("Failed to fetch sponsors");
|
if (!res.ok) throw new Error("Failed to fetch sponsors");
|
||||||
return res.json();
|
return res.json();
|
||||||
|
|||||||
@@ -1421,9 +1421,7 @@ const StackBuilder = () => {
|
|||||||
}, [stack.projectName]);
|
}, [stack.projectName]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetch(
|
fetch("https://sponsors.amanv.dev/sponsors.json")
|
||||||
"https://cdn.jsdelivr.net/gh/amanvarshney01/sponsors/sponsorkit/sponsors.json",
|
|
||||||
)
|
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (!res.ok) throw new Error("Failed to fetch sponsors");
|
if (!res.ok) throw new Error("Failed to fetch sponsors");
|
||||||
return res.json();
|
return res.json();
|
||||||
|
|||||||
Reference in New Issue
Block a user