Skip to content

Commit 8549e51

Browse files
committed
Fix: Update
Signed-off-by: Varad Gupta <[email protected]>
1 parent e0a8767 commit 8549e51

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/pages/solutions/cloud-cost-control/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ import React from "react";
33
import SEO from "../../../components/seo";
44
import CloudCostControl from "../../../sections/Cloud-Cost-Control";
55

6-
const CloudCostControl = () => {
6+
const CloudCostControlPage = () => {
77
return (
88
<>
99
<CloudCostControl />
1010
</>
1111
);
1212
};
13-
export default CloudCostControl;
13+
export default CloudCostControlPage;
1414
export const Head = () => {
1515
return <SEO title="Cloud Cost Control page"
1616
description="Optimize costs, reduce risks, and take control of infrastructure with Layer5’s cloud-native management solutions."
1717
image={"/images/solution-cost.svg"}
18-
/>;
18+
/>;
1919
};

src/sections/Cloud-Cost-Control/info.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ const SolutionsDetails = () => {
108108
<div className="tools">
109109
<p>LAYER5 PRODUCTS AND TOOLS DEPLOYED</p>
110110
<div className="logos">
111-
<img src={mesheryLogo} />
111+
<a href="https://layer5.io/cloud-native-management/meshery">
112+
<img src={mesheryLogo} />
113+
</a>
112114
<img src={serviceMeshLogo} />
113115
<img src={meshsyncLogo} />
114116
</div>

src/sections/General/Navigation/utility/menu-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const Data = {
4242
path: "/solutions/platform-engineering",
4343
sepLine: true,
4444
},
45-
{
45+
{
4646
name: "Cloud Cost Control",
4747
path: "/solutions/cloud-cost-control",
4848
sepLine: true,

0 commit comments

Comments
 (0)