Skip to content

Adjust Acknowledgements tab for DesignGurus.io #272

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

Merged
merged 1 commit into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/static/images/DesignGurus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/static/images/Educative.png
Binary file not shown.
14 changes: 8 additions & 6 deletions src/components/Acknowledgements/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import './styles.scss';

const imagePath = `${process.env.PUBLIC_URL}/static/images/`;
const Blind = `${imagePath}Blind.png`;
const Educative = `${imagePath}Educative.png`;
const DesignGurus = `${imagePath}DesignGurus.png`;
const Hackernoon = `${imagePath}Hackernoon.png`;

const Acknowledgements = () => {
Expand Down Expand Up @@ -49,22 +49,24 @@ const Acknowledgements = () => {
</Col>
<Col sm={3}>
<Card>
<CardImg top width="100%" src={Educative} alt="Educative.io" />
<CardImg top width="100%" src={DesignGurus} alt="DesignGurus.io" />
<CardBody>
<CardTitle>Grokking the Coding Interview</CardTitle>
<CardTitle>
Grokking the Coding Interview: Patterns for Coding Questions
</CardTitle>
<CardSubtitle>
<NavLink
target="_blank"
href="https://www.educative.io/courses/grokking-the-coding-interview"
href="https://www.designgurus.io/course/grokking-the-coding-interview"
onClick={() => {
Event(
'Acknowledgements',
'Clicked URL',
'Educative.io url',
'DesignGurus.io url',
);
}}
>
https://www.educative.io/courses/grokking-the-coding-interview
https://www.designgurus.io/course/grokking-the-coding-interview
</NavLink>
</CardSubtitle>
</CardBody>
Expand Down