Skip to content

Commit

Permalink
fix screenshot on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed Feb 1, 2021
1 parent c8d6509 commit d367143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import styles from './styles.module.css';
const features = [
{
// title: 'Easy to Use',
imageUrl: 'https://github.com/TypeStrong/ts-node/raw/master/screenshot.png',
imageUrl: 'screenshot.png',
// description: (
// <>
// Docusaurus was designed from the ground up to be easily installed and
Expand Down Expand Up @@ -94,7 +94,7 @@ function Home() {
<div className={clsx('col col--4', styles.feature)}> */}
<div className="text--center">
{/* <img className={styles.featureImage} src="https://github.com/TypeStrong/ts-node/raw/master/screenshot.png" alt="screenshot of ts-node" /> */}
<img src="/static/img/screenshot.png" alt="screenshot of ts-node" />
<img src={useBaseUrl('img/screenshot.png')} alt="screenshot of ts-node" />
</div>
{/* </div>
</div> */}
Expand Down

0 comments on commit d367143

Please sign in to comment.