-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Images 🌄 migration to GCP ⚓️ #708
Conversation
export const PROGATE: string = 'https://storage.googleapis.com/ignitus_assets/ig-partners-logo/partnersLogo_progateLogo.png'; | ||
export const LEANIN: string = 'https://storage.googleapis.com/ignitus_assets/ig-partners-logo/partnersLogo_leanLogo.png'; | ||
export const GIRLSCRIPT: string = 'https://storage.googleapis.com/ignitus_assets/ig-partners-logo/partnersLogo_gsLogo.png'; | ||
export const WOOTECH: string = 'https://storage.googleapis.com/ignitus_assets/ig-partners-logo/wooTech.png'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: Unexpected token :
@@ -1,2 +1,2 @@ | |||
export const RESUME: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_Resume.svg'; | |||
export const TORCH: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_torch.svg'; | |||
export const RESUME: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/resume.svg'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: Unexpected token :
@@ -1,7 +1,7 @@ | |||
//Ignitus utility classes | |||
|
|||
.bg-triangle { | |||
background: url('/images/split-blue-background.png') no-repeat; | |||
background: url('/images/splitBlueBackground.png') no-repeat; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer double-quoted strings
@@ -29,7 +29,7 @@ | |||
} | |||
|
|||
.intro__wrapper { | |||
background: url('https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_split-blue-background.png') no-repeat; | |||
background: url('https://storage.googleapis.com/ignitus_assets/ig-assets/splitBlueBackground.png') no-repeat; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line should be indented with spaces, not tabs
Prefer double-quoted strings
URL https://storage.googleapis.com/ignitus_assets/ig-assets/splitBlueBackground.png
should not contain protocol or domain
@@ -1,2 +1,2 @@ | |||
export const studentAuth: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_studentAuth.svg'; | |||
export const professorAuth: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_professorAuth.svg'; | |||
export const studentAuth: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/studentAuthentication.svg'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: Unexpected token :
@@ -1,6 +1,6 @@ | |||
/* eslint-disable eol-last */ | |||
// eslint-disable-next-line import/prefer-default-export | |||
export const aboutImg: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/Assets_about-us.png'; | |||
export const aboutImg: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/about.png'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: Unexpected token :
Codecov Report
@@ Coverage Diff @@
## develop #708 +/- ##
=============================================
Coverage 15.95745% 15.95745%
=============================================
Files 45 45
Lines 376 376
Branches 82 82
=============================================
Hits 60 60
Misses 316 316
Continue to review full report at Codecov.
|
Images 🌄 migration to GCP ⚓️