-
Notifications
You must be signed in to change notification settings - Fork 235
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 #1070 from EnterpriseDB/feature/evan/static-images
Pull in static image on homepage with webpack vs using static folder Former-commit-id: 6cbae9f
- Loading branch information
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes
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,6 +1,7 @@ | ||
import React from 'react'; | ||
import { Container } from 'react-bootstrap'; | ||
import Icon, { iconNames } from '../components/icon/'; | ||
import cliImg from '../images/[email protected]'; | ||
import { | ||
Footer, | ||
IndexSubNav, | ||
|
@@ -82,7 +83,7 @@ const Page = () => ( | |
</div> | ||
<div className="card-editorial-cnpo align-self-end"> | ||
<img | ||
src="images/[email protected]" | ||
src={cliImg} | ||
alt="Illustration of a Kubernetes Terminal Command" | ||
className="img-fluid shadow" | ||
/> | ||
|