From fa38da71c040fc6be12c7bc432b6bb83263ba489 Mon Sep 17 00:00:00 2001 From: "Vasiliy Vanchuk (@vvscode)" Date: Wed, 25 Sep 2019 22:16:58 +0400 Subject: [PATCH] Github.ist -> GitHub.ist #1 --- README.md | 2 +- src/App.jsx | 4 ++-- src/components/Logo/Logo.jsx | 2 +- src/components/Logo/__snapshots__/Logo.test.jsx.snap | 2 +- src/routes/Developer/Developer.jsx | 2 +- src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx | 2 +- src/routes/Developers/Developers.jsx | 4 ++-- src/routes/Language/Language.jsx | 2 +- src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx | 2 +- src/routes/Languages/Languages.jsx | 4 ++-- src/routes/Location/Location.jsx | 2 +- src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx | 2 +- src/routes/Locations/Locations.jsx | 4 ++-- src/routes/Repositories/Repositories.jsx | 4 ++-- src/routes/Repository/Repository.jsx | 4 ++-- 15 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index b554c8d..37810a3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Github.ist +# GitHub.ist This is the Web application repo for https://github.ist. You may also want to take a look to [API](https://github.com/alpcanaydin/githubist-api) and [Fetcher](https://github.com/alpcanaydin/githubist-fetcher) diff --git a/src/App.jsx b/src/App.jsx index f4957bf..0085e9d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -8,13 +8,13 @@ import './App.scss'; import Routes from './routes'; import { Header, Footer, ScrollToTop } from './components'; -const metaTitle = 'Github.ist'; +const metaTitle = 'GitHub.ist'; const metaDesc = 'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için şehir, dil, repo ve geliştirici istatistikleri.'; const App = () => ( - + diff --git a/src/components/Logo/Logo.jsx b/src/components/Logo/Logo.jsx index 23d3486..70f9718 100644 --- a/src/components/Logo/Logo.jsx +++ b/src/components/Logo/Logo.jsx @@ -20,7 +20,7 @@ const Logo = ({ className, alt }: Props) => { Logo.defaultProps = { className: '', - alt: 'Github.ist', + alt: 'GitHub.ist', }; export default Logo; diff --git a/src/components/Logo/__snapshots__/Logo.test.jsx.snap b/src/components/Logo/__snapshots__/Logo.test.jsx.snap index a5b928f..cf1a525 100644 --- a/src/components/Logo/__snapshots__/Logo.test.jsx.snap +++ b/src/components/Logo/__snapshots__/Logo.test.jsx.snap @@ -2,7 +2,7 @@ exports[`renders correctly 1`] = ` Github.ist ( return ; } - const metaTitle = `${data.developer.name} - Github.ist`; + const metaTitle = `${data.developer.name} - GitHub.ist`; const metaDesc = `${data.developer.name} için Github Türkiye istatistikleri`; return ( diff --git a/src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx b/src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx index 2bc9b17..ab7107e 100644 --- a/src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx +++ b/src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx @@ -35,7 +35,7 @@ const GeneralInfo = ({ match }: Props) => ( ( return ; } - const metaTitle = 'Geliştiriciler - Github.ist'; + const metaTitle = 'Geliştiriciler - GitHub.ist'; const metaDesc = 'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için istatistikler.'; @@ -51,7 +51,7 @@ const Developers = () => ( diff --git a/src/routes/Language/Language.jsx b/src/routes/Language/Language.jsx index af56236..1e8e316 100644 --- a/src/routes/Language/Language.jsx +++ b/src/routes/Language/Language.jsx @@ -41,7 +41,7 @@ const Language = ({ match }: Props) => ( return ; } - const metaTitle = `${data.language.name} - Github.ist`; + const metaTitle = `${data.language.name} - GitHub.ist`; const metaDesc = `${data.language.name} dili için Github Türkiye istatistikleri`; return ( diff --git a/src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx b/src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx index 9ea4850..eecd90f 100644 --- a/src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx +++ b/src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx @@ -33,7 +33,7 @@ const GeneralInfo = ({ match }: Props) => ( ( return ; } - const metaTitle = 'Diller - Github.ist'; + const metaTitle = 'Diller - GitHub.ist'; const metaDesc = 'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için dil istatikleri.'; @@ -50,7 +50,7 @@ const Languages = () => ( diff --git a/src/routes/Location/Location.jsx b/src/routes/Location/Location.jsx index 88bd238..faa140d 100644 --- a/src/routes/Location/Location.jsx +++ b/src/routes/Location/Location.jsx @@ -41,7 +41,7 @@ const Location = ({ match }: Props) => ( return ; } - const metaTitle = `${data.location.name} - Github.ist`; + const metaTitle = `${data.location.name} - GitHub.ist`; const metaDesc = `${data.location.name} için Github Türkiye istatistikleri`; return ( diff --git a/src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx b/src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx index cadb12a..e622415 100644 --- a/src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx +++ b/src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx @@ -33,7 +33,7 @@ const GeneralInfo = ({ match }: Props) => ( ( return ; } - const metaTitle = 'Şehirler - Github.ist'; + const metaTitle = 'Şehirler - GitHub.ist'; const metaDesc = 'Github için Türkiye şehirleri için istatikler.'; return ( @@ -49,7 +49,7 @@ const Locations = () => ( diff --git a/src/routes/Repositories/Repositories.jsx b/src/routes/Repositories/Repositories.jsx index 14b8470..b29442d 100644 --- a/src/routes/Repositories/Repositories.jsx +++ b/src/routes/Repositories/Repositories.jsx @@ -31,7 +31,7 @@ const Repos = () => ( return ; } - const metaTitle = 'Repolar - Github.ist'; + const metaTitle = 'Repolar - GitHub.ist'; const metaDesc = 'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için repository istatistikleri.'; @@ -50,7 +50,7 @@ const Repos = () => ( diff --git a/src/routes/Repository/Repository.jsx b/src/routes/Repository/Repository.jsx index 24ce2bf..d6e4c14 100644 --- a/src/routes/Repository/Repository.jsx +++ b/src/routes/Repository/Repository.jsx @@ -43,7 +43,7 @@ const Repository = ({ match }: Props) => ( return ; } - const metaTitle = `${data.repository.slug} - Github.ist`; + const metaTitle = `${data.repository.slug} - GitHub.ist`; const metaDesc = `${data.repository.slug} için Github Türkiye istatistikleri`; return ( @@ -84,7 +84,7 @@ const Repository = ({ match }: Props) => (