This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Header GIF Logo, Sonunda Versiyon Kontrolü?
- Loading branch information
1 parent
5b0f86e
commit a3fca5c
Showing
5 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
REACT_APP_SITENAME="" | ||
REACT_APP_SITEURL="" | ||
REACT_APP_DEV_API_URL="" | ||
REACT_APP_SITENAME= | ||
REACT_APP_SITEURL= | ||
REACT_APP_DEV_API_URL= | ||
REACT_APP_HEADER_LOGO_TYPE= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,5 @@ npm-debug.log* | |
debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
src/static/fullLogo.gif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
import logo from '../../static/logo.png' | ||
import fullLogo from '../../static/fullLogo.png' | ||
|
||
export { logo, fullLogo } | ||
var fullLogoGif = null | ||
// GIF logosunun dosyalarını dene. Varsa içeri al, birisi yoksa hata ver ve header'da statik logoyu göster. (/components/header/header.js) | ||
try { | ||
fullLogoGif = require('../../static/fullLogo.gif'); | ||
} catch (err) { | ||
console.warn('GIF logo bulunamadı.') | ||
} | ||
|
||
export { logo, fullLogo, fullLogoGif } |