Skip to content

Commit

Permalink
Se agrega QR Code Chimp en Work With Section
Browse files Browse the repository at this point in the history
  • Loading branch information
mpvaldez committed Aug 19, 2024
1 parent b5a5069 commit f400073
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 16 additions & 2 deletions src/components/work-with-section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import via_libre from "./assets/viaLibre.png"
import luminate from "./assets/luminate-logo.png"
import ef from "./assets/ef.png"
import ccij from "./assets/ccij.png"
import qrcodechimp from "./assets/qrcodechimp.png"

const WorkWith = () => {
const intl = useIntl();
Expand Down Expand Up @@ -312,6 +313,12 @@ const WorkWith = () => {
src: ef,
class: "",
},
{
name: "QRCodeChimp",
src: qrcodechimp,
class: "",
href:"https://www.qrcodechimp.com?from=power"
},
];

return (
Expand All @@ -324,11 +331,18 @@ const WorkWith = () => {
{logos.map((logo, index) => (
<div key={index} className="column is-one-third-tablet is-one-quarter-desktop is-half-mobile">
<figure className="image">
<img
{logo.href? <a href={logo.href} target="_blank" rel="noopener noreferrer">
<img
src={logo.src}
className={`client-logo ${logo.class}`}
alt={`${logo.name}`}
/>
</a> : <img
src={logo.src}
className={`client-logo ${logo.class}`}
alt={`${logo.name}`}
/>
/>}

</figure>
</div>
))}
Expand Down

0 comments on commit f400073

Please sign in to comment.