Skip to content

Commit 9e4ffad

Browse files
committed
uplift
Signed-off-by: Lee Calcote <[email protected]>
1 parent 62d1931 commit 9e4ffad

File tree

16 files changed

+100
-48
lines changed

16 files changed

+100
-48
lines changed

src/components/Features/TwoColLayout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const TwoColLayout = ({ containerRefs, contentRefs }) => {
9292
</Link>
9393
</ImageWrapper>
9494
<ContentWrapper ref={(el) => (contentRefs.current[1] = el)}>
95-
<h2>Easing your Workflow Burden Collaboratively</h2>
95+
<h2>Cognitive overload is real</h2>
9696
<p className="text">Empower DevOps, platform, and site reliability engineers with our orchestration management solution. Achieve seamless collaboration and operational harmony for enhanced productivity.</p>
9797
<Link to="/solutions/orchestration-management">Learn more &rarr;</Link>
9898
</ContentWrapper>

src/components/Features/images/22.svg

Lines changed: 17 additions & 0 deletions
Loading
Lines changed: 4 additions & 11 deletions
Loading
Lines changed: 42 additions & 0 deletions
Loading

src/pages/cloud-native-management/generate-gcp-architecture-diagram.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Gcp = () => {
1212
};
1313
export default Gcp;
1414
export const Head = () => {
15-
return <SEO title="GCP Architecture Diagram"
16-
description="Create your own Google Cloud Platform diagrams with Kanvas."
15+
return <SEO title="Google Cloud Platform (GCP) Architecture Diagramming"
16+
description="Create your own Google Cloud Platform solution architecture and collaborative, visual diagrams with Kanvas."
1717
image="/images/meshery-logo-dark-text.webp" />;
1818
};

src/sections/ArchitectureDiagram/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import customizationGIF from "./images/customization.gif";
1212
import shapesAndTemplatesGIF from "./images/shapes-and-templates.gif";
1313
import RelatedPicks from "../../components/RelatedPicks";
1414
let data = {
15-
heading: "Design Architecture Diagram Online",
15+
heading: "Design Architecture Diagrams Online",
1616
sub_heading: "Effortlessly create software architectures, application architectures and system architectures in minutes.",
1717
image: whiteboard_svg
1818
};
@@ -50,13 +50,13 @@ const ArchitectureDiagram = () => {
5050
<div className={"question-container"}>
5151
<div className="wrapper">
5252
<h2 className={"use-heading"}>Why use an architecture diagramming software?</h2>
53-
<p>Following all the elements within your cloud environment can be challenging, but a visual diagram of your cloud architecture will help you stay up to date with its status, understand the relationship between components, identify and solve problems. This complexity adds up when multiple team members are working on the same project. A collaborative cloud diagramming sofware could help to pinpoint information and ensure that everybody is on the same page.</p>
53+
<p>Cognitive overload is real. Trying to hold all elements of your environment in your mind can be challenging, but a visual diagram of your cloud architecture will help you stay up to date with its status, understand the relationship between components, identify and solve problems. This complexity adds up when multiple team members are working on the same project. A collaborative cloud diagramming sofware could help to pinpoint information and ensure that everybody is on the same page.</p>
5454
</div>
5555
</div>
5656
<Container>
5757
<div className={"feature-use-container"}>
5858
<div className={"use-heading"}>
59-
<h2>Visual Tool That Get Things Done</h2>
59+
<h2>Visual Tool That Gets Things Done</h2>
6060
<p> Not just pretty pictures. Data-linked visual apps to streamline all your efforts.</p>
6161
</div>
6262
<div className={"collaboration_display"}>

src/sections/Docker-Meshery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Row, Col } from "../../reusecore/Layout";
44
import docker from "../../assets/images/socialIcons/docker_white.svg";
55
import meshery from "../../assets/images/meshery/icon-only/meshery-logo-white.svg";
66
import DockerExtensionMeshery from "./docker-extension-meshery";
7-
import KanvasCTA from "../kanvas-cta";
7+
import KanvasCTA from "../Kanvas/kanvas-cta";
88

99
const MesheryDockerPage = () => {
1010
return (

src/sections/Home/FeaturesContainer/index.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,17 @@ const FeaturesContainer = () => {
2626
const layoutRef = useRef(null);
2727
const featuresInfo = [
2828
{
29-
title: "Collaborate with Precision",
29+
title: "Build Systems Faster, Together",
3030
show_custom_cursor: true,
3131
animationOne: true,
3232
redirectLink: "/cloud-native-management/kanvas/collaborate/peer-reviews",
33-
desc: "Real-time collaboration for cloud and cloud native designs with live-editing, instant feedback, deploy dry runs, and secure access controls.",
33+
desc: "Real-time collaboration for cloud native and Kubernetes designs with live-editing, instant feedback, deploy dry runs, and secure access controls.",
3434
imgLink: isDark ? CommentingImageDark : CommentingImageLight,
3535
cursor: false,
3636
},
37-
{
38-
title: "Generate stunning diagrams",
39-
show_custom_cursor: false,
40-
animationOne: false,
41-
redirectLink: "/whiteboard",
42-
desc: "Crafting cloud-native symphonies: Our engineering diagramming tool is your conductor's baton, turning Kubernetes infrastructure into a canvas for freestyle orchestration.",
43-
imgLink: isDark ? WhiteboardingImage : WhiteboardingImageLight,
44-
cursor: true,
45-
},
4637
{
4738
title: "Multi-Cloud by Design",
48-
show_custom_cursor: false,
39+
show_custom_cursor: true,
4940
animationOne: true,
5041
redirectLink: "",
5142
desc: (
@@ -72,6 +63,15 @@ const FeaturesContainer = () => {
7263
},
7364
],
7465
},
66+
{
67+
title: "Be on the same page, literally",
68+
show_custom_cursor: true,
69+
animationOne: false,
70+
redirectLink: "/whiteboard",
71+
desc: "Crafting cloud-native symphonies: Our engineering diagramming tool is your conductor's baton, turning Kubernetes infrastructure into a canvas for freestyle orchestration.",
72+
imgLink: isDark ? WhiteboardingImage : WhiteboardingImageLight,
73+
cursor: true,
74+
}
7575
];
7676

7777
useEffect(() => {

src/sections/kanvas-cta/index.js renamed to src/sections/Kanvas/kanvas-cta/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from "react";
22
import styled from "styled-components";
33

4-
import { Container } from "../../reusecore/Layout";
4+
import { Container } from "../../../reusecore/Layout";
55
import Locator from "./locator.svg";
66
import MesherySurface from "./meshery-surface.svg";
7-
import Button from "../../reusecore/Button";
7+
import Button from "../../../reusecore/Button";
88

99
const KanvasCTAWrapper = styled.div`
1010
.CTAbody {

0 commit comments

Comments
 (0)