Skip to content

Commit

Permalink
Setting transient props
Browse files Browse the repository at this point in the history
Signed-off-by: Aviral Asthana <[email protected]>
  • Loading branch information
Aviral0702 committed Aug 22, 2024
1 parent 87ca549 commit 5b8b9ae
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/sections/AWS-Diagram/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Header = () => {
<Button
primary
title="Try MeshMap Now!"
external={true}
$external={true}
url="/meshmap"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Cloud-Native-Catalog/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Header = () => {
<Button
primary
title="Browse Catalog"
external={true}
$external={true}
url="https://meshery.io/catalog"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Community/Members-grid/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const MembersGrid = (props) => {
className="banner-btn memberProfileBtn"
title="Collect Badges"
url="https://badges.layer5.io/"
external={true}
$external={true}
>
<FaCertificate size={21} className="icon-left" />
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/FeatureHero/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const FeatureHero = (props) => {
primary
title="Try Now!"
url="https://meshery.layer5.io"
external={true}
$external={true}
/>
</div>
<div className={"whiteboard-image"}>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/GCP-Diagram/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Header = () => {
<Button
primary
title="Try MeshMap Now!"
external={true}
$external={true}
url="/meshmap"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Home/Playground-home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ const MeshmapVisualizerViews = () => {
<Button
primary
title="Open in Demo System &rarr;"
external={true}
$external={true}
url="https://playground.meshery.io/"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const MeshmapIntegrationsSection = () => {
secondary
style={{ margin: "1.5rem 0 1.5rem 0" }}
url="https://layer5.io/cloud-native-management/meshery/integrations"
external={true}
$external={true}
>
All Integrations
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Playground/playground-CTA.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const DockerExtensionCTA = () => {
<h4>Connect to live clusters<br />Discover, validate, and visualize<br />Kubernetes infrastructure with ease.</h4>
</div>
<p></p>
<Button primary url="https://play.meshery.io/" external={true}>
<Button primary url="https://play.meshery.io/" $external={true}>
Try Playground now!
</Button>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/sections/Products/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ const index = () => {
flexibility, elevating operations to new efficiencies.{" "}
</p>
<div className="btn">
<Button secondary className="banner-btn two" external={true} title="Explore Now" alt="" url="https://meshery.layer5.io/"/>
<Button id="book-a-demo" aria-label="Book a demo" primary className="banner-btn book-a-demo" external={true} title="Book a demo" alt="Book a demo" url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true" />
<Button secondary className="banner-btn two" $external={true} title="Explore Now" alt="" url="https://meshery.layer5.io/"/>
<Button id="book-a-demo" aria-label="Book a demo" primary className="banner-btn book-a-demo" $external={true} title="Book a demo" alt="Book a demo" url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true" />
</div>
</div>
<div className="product_hero_img">
Expand Down Expand Up @@ -295,7 +295,7 @@ const index = () => {
Book to see it in action! Our experts are eager to guide you through the incredible possibilities that Layer5 offers. Take this opportunity to discover what more your infrastructure can do for you!
</p>
</div>
<Button external={true} primary title="Book a Demo" alt="Book a demo" url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true" />
<Button $external={true} primary title="Book a Demo" alt="Book a demo" url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true" />
</div>
</div>
</ProductsWrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/SeeYou/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const SeeYou = () => {
</div>

<div>
<Button primary className={"playground-button"} title={"Try Playground"} external={true} url={"https://playground.meshery.io"} />
<Button primary className={"playground-button"} title={"Try Playground"} $external={true} url={"https://playground.meshery.io"} />
</div>
{/*</div>*/}
</Container>
Expand Down

0 comments on commit 5b8b9ae

Please sign in to comment.