-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from XPRTZ/feature/mobile-friendly-ui
Feature/mobile friendly UI
- Loading branch information
Showing
75 changed files
with
50,890 additions
and
8,511 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
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,5 +1,17 @@ | ||
require('./stylesheets/base.scss') | ||
require('./images/tech-radar-landing-page-wide.png') | ||
require('./images/tw-logo.png') | ||
require('./images/favicon.ico') | ||
require('./images/favicon32.png') | ||
require('./images/search-logo-2x.svg') | ||
require('./images/banner-image-mobile.jpg') | ||
require('./images/banner-image-desktop.jpg') | ||
require('./images/new.svg') | ||
require('./images/existing.svg') | ||
require('./images/arrow-icon.svg') | ||
require('./images/first-quadrant-btn-bg.svg') | ||
require('./images/second-quadrant-btn-bg.svg') | ||
require('./images/third-quadrant-btn-bg.svg') | ||
require('./images/fourth-quadrant-btn-bg.svg') | ||
require('./images/arrow-white-icon.svg') | ||
require('./images/search-active-wave.svg') | ||
require('./images/pdf_banner.png') |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const config = () => { | ||
const env = { | ||
production: { | ||
featureToggles: { | ||
UIRefresh2022: true, | ||
}, | ||
}, | ||
development: { | ||
featureToggles: { | ||
UIRefresh2022: true, | ||
}, | ||
}, | ||
} | ||
return process.env.ENVIRONMENT ? env[process.env.ENVIRONMENT] : env | ||
} | ||
module.exports = config |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
class FileNotFoundError extends Error { | ||
constructor(message) { | ||
super(message) | ||
this.message = message | ||
} | ||
} | ||
|
||
module.exports = FileNotFoundError |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
class InvalidConfigError extends Error { | ||
constructor(message) { | ||
super(message) | ||
this.message = message | ||
} | ||
} | ||
|
||
module.exports = InvalidConfigError |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
class InvalidContentError extends Error { | ||
constructor(message) { | ||
super(message) | ||
this.message = message | ||
} | ||
} | ||
|
||
module.exports = InvalidContentError |
Oops, something went wrong.