Update repo name

This commit is contained in:
Ariful Alam
2022-03-20 02:23:44 +06:00
parent b864c2cdd7
commit 20ac254201
17 changed files with 64 additions and 64 deletions

View File

@@ -1,7 +1,7 @@
import { getDevtoArticle, getMediumArticle } from 'article-api';
import moment from 'moment';
import { Fragment, useEffect, useState } from 'react';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { ga, skeleton } from '../../helpers/utils';
import LazyImage from '../lazy-image';
import PropTypes from 'prop-types';

View File

@@ -14,7 +14,7 @@ import {
} from 'react-icons/fa';
import PropTypes from 'prop-types';
import { skeleton } from '../../helpers/utils';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
const ListItem = ({ icon, title, value, link, skeleton = false }) => {
return (

View File

@@ -1,5 +1,5 @@
import { skeleton } from '../../helpers/utils';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { Fragment } from 'react';
import PropTypes from 'prop-types';

View File

@@ -1,5 +1,5 @@
import { skeleton } from '../../helpers/utils';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { Fragment } from 'react';
import PropTypes from 'prop-types';

View File

@@ -1,7 +1,7 @@
import { Fragment } from 'react';
import { Helmet } from 'react-helmet-async';
import PropTypes from 'prop-types';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { isThemeDarkish } from '../../helpers/utils';
const HeadTagEditor = ({ profile, theme }) => {

View File

@@ -1,7 +1,7 @@
import { Fragment } from 'react';
import { AiOutlineStar, AiOutlineFork } from 'react-icons/ai';
import PropTypes from 'prop-types';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { ga, languageColor, skeleton } from '../../helpers/utils';
const Project = ({ repo, loading }) => {

View File

@@ -1,4 +1,4 @@
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import { skeleton } from '../../helpers/utils';
import PropTypes from 'prop-types';

View File

@@ -1,13 +1,13 @@
import { AiOutlineControl } from 'react-icons/ai';
import { skeleton } from '../../helpers/utils';
import config from '../../ezprofile.config';
import config from '../../gitprofile.config';
import PropTypes from 'prop-types';
const ThemeChanger = ({ theme, setTheme, loading }) => {
const changeTheme = (e, selectedTheme) => {
e.preventDefault();
document.querySelector('html').setAttribute('data-theme', selectedTheme);
localStorage.setItem('ezprofile-theme', selectedTheme);
localStorage.setItem('gitprofile-theme', selectedTheme);
setTheme(selectedTheme);
};