@@ -9,7 +9,7 @@ A lightweight, customizable widget to embed your GitHub contribution graph on an
99[ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue )] ( LICENSE )
1010
1111<p align =" center " >
12- <a href =" https://github-contribution-graph.netlify.app " ><strong >Live Demo</strong ></a > ·
12+ <a href =" https://githubgraph.jigyansurout.com " ><strong >Live Demo</strong ></a > ·
1313 <a href =" https://github.com/iamjr15/github-contribution-graph " ><strong >GitHub Repo</strong ></a > ·
1414 <a href =" https://npmjs.com/package/github-contrib-graph " ><strong >npm Package</strong ></a >
1515</p >
@@ -59,13 +59,13 @@ Add the following to your HTML file to get the standard GitHub-styled graph:
5959
6060``` html
6161<!-- 1. Include the styles -->
62- <link rel =" stylesheet" href =" https://github-contribution-graph.netlify.app /assets/css/gh.css" >
62+ <link rel =" stylesheet" href =" https://githubgraph.jigyansurout.com /assets/css/gh.css" >
6363
6464<!-- 2. Create the container with your username -->
6565<div id =" gh" data-login =" iamjr15" ></div >
6666
6767<!-- 3. Include the script -->
68- <script src =" https://github-contribution-graph.netlify.app /assets/js/gh.js" ></script >
68+ <script src =" https://githubgraph.jigyansurout.com /assets/js/gh.js" ></script >
6969```
7070
7171---
@@ -211,12 +211,12 @@ const ContributionGraph = ({ username }) => {
211211 // Add CSS
212212 const link = document .createElement (' link' );
213213 link .rel = ' stylesheet' ;
214- link .href = ' https://github-contribution-graph.netlify.app /assets/css/gh.css' ;
214+ link .href = ' https://githubgraph.jigyansurout.com /assets/css/gh.css' ;
215215 document .head .appendChild (link);
216216
217217 // Add Script
218218 const script = document .createElement (' script' );
219- script .src = ' https://github-contribution-graph.netlify.app /assets/js/gh.js' ;
219+ script .src = ' https://githubgraph.jigyansurout.com /assets/js/gh.js' ;
220220 script .async = true ;
221221 script .onload = () => {
222222 // Render after script loads and DOM is ready
@@ -259,12 +259,12 @@ onMounted(() => {
259259 // Add CSS
260260 link = document.createElement('link');
261261 link.rel = 'stylesheet';
262- link.href = 'https://github-contribution-graph.netlify.app /assets/css/gh.css';
262+ link.href = 'https://githubgraph.jigyansurout.com /assets/css/gh.css';
263263 document.head.appendChild(link);
264264
265265 // Add Script
266266 script = document.createElement('script');
267- script.src = 'https://github-contribution-graph.netlify.app /assets/js/gh.js';
267+ script.src = 'https://githubgraph.jigyansurout.com /assets/js/gh.js';
268268 script.async = true;
269269 script.onload = () => {
270270 // Render after script loads and DOM is ready
@@ -287,7 +287,7 @@ onUnmounted(() => {
287287The widget uses a serverless API to fetch contribution data:
288288
289289```
290- GET https://github-contribution-graph.netlify.app /api/ghcg/fetch-data?login={username}
290+ GET https://githubgraph.jigyansurout.com /api/ghcg/fetch-data?login={username}
291291```
292292
293293** Response:**
0 commit comments