Skip to content

Commit

Permalink
add more missing props
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed Oct 7, 2024
1 parent 122c8b1 commit 7fa50ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Call-To-Actions/CTA_Bottom/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const CTA_Bottom = ({ alt, button_text, category, content, external_link, image,
<p>{content ? content : defaultContent}</p>
</>
)}
<Button $primary title={category ? Categories[category]["Button_Text"] : (button_text ? button_text : "Join Us")} url={category ? Categories[category]["Link"] : (url ? url : defaultURL)} external={category ? Categories[category]["Link_external"] : (external_link ? true : false)} />
<Button $primary title={category ? Categories[category]["Button_Text"] : (button_text ? button_text : "Join Us")} $url={category ? Categories[category]["Link"] : (url ? url : defaultURL)} external={category ? Categories[category]["Link_external"] : (external_link ? true : false)} />
</div>

</CTA_BottomWrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeatureUseCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Col } from "../../reusecore/Layout";

const FeatureUseCard = (props) => {
return (
<Col sm={props.sm} md={props.md} lg={props.lg} className={"display-container"}>
<Col $sm={props.sm} $md={props.md} $lg={props.lg} className={"display-container"}>
<FeatureUseCardWrapper >
<div className={"image-container"}>
<img src={props.data.image} alt={""}/>
Expand Down
8 changes: 6 additions & 2 deletions src/sections/Company/Contact/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const ContactPage = () => {
title={"Get In Touch"}
subtitle={"Let us know how we can help you."}
/>
<Row className="cards-container">
<Row style={{
flexWrap: "wrap"
}} className="cards-container">
<CardOutline
link="/careers"
img={Jobs_Icon}
Expand All @@ -45,7 +47,9 @@ const ContactPage = () => {
content="I would like to establish a partnership with Layer5"
/>
</Row>
<Row className="contact-form-row">
<Row style={{
flexWrap: "wrap"
}} className="contact-form-row">
<Row
onClick={function () {
toggleForm();
Expand Down

0 comments on commit 7fa50ae

Please sign in to comment.