Skip to content

Commit

Permalink
Work Around Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ajay Singh <[email protected]>
  • Loading branch information
Ajay-singh1 committed Dec 12, 2024
1 parent a223d57 commit 9dd328c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sections/AWS-Diagram/diagram.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import React from "react";
import styled from "styled-components";
import { Container, Row, Col } from "../../reusecore/Layout";
import { useStyledDarkMode } from "../../theme/app/useStyledDarkMode";
import Template from "../../assets/images/AWS-Diagram/templates.svg"
import TemplateWhite from "../../assets/images/AWS-Diagram/templates.svg"
import TemplateDark from "../../assets/images/AWS-Diagram/templates-dark.svg"
import RelatedPicks from "../../components/RelatedPicks";
import ConfigGIF from "./images/config.gif";
import DeployGIF from "./images/deploy.gif";
Expand Down Expand Up @@ -199,7 +200,7 @@ const Aws = () => {
<Row className="catalog">
<Col md={8} className="diagram-image">
<div className="image-wrapper">
<img src={Template} alt="Designing AWS Diagrams with Kanvas" className="aws-image" />
<img src={isDark?TemplateDark:TemplateWhite} alt="Designing AWS Diagrams with Kanvas" className="aws-image" />
</div>
</Col>
<Col md={4} className="diagram-detail">
Expand Down

0 comments on commit 9dd328c

Please sign in to comment.