Skip to content

Commit

Permalink
Merge pull request #215 from meshery/rename
Browse files Browse the repository at this point in the history
chore: rename
  • Loading branch information
leecalcote committed Sep 11, 2024
2 parents c123152 + dc5a4bf commit 091b94c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion site/src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SignupForm from "./components/SignupForm";
import { Main } from './App.style.js';
import mesheryPlayground from "./assets/images/meshery-playground-meshmap.png";
import mesheryPlayground from "./assets/images/meshery-playground-kanvas.png";
import Footer from "./components/Footer";
import { ThemeProvider } from "styled-components";
import { darkTheme, GlobalStyle, lightTheme } from './index.style.js';
Expand Down
10 changes: 5 additions & 5 deletions site/src/assets/data/faq/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const data = {
category: "Meshery Playground",
answer: `
- No, all of the designs that you have created in the Meshery Playground are saved to your user account and will be available to you each time that you sign into your account. Your designs will be available in the Meshery Playground and any your other Meshery deployments, too.
- In other words, all work done in MeshMap Designer is persisted to your user account.
- In other words, all work done in Kanvas Designer is persisted to your user account.
`,
},
{
Expand All @@ -39,7 +39,7 @@ const data = {
category: "Meshery Playground",
answer: `
- Yes, the Meshery Playground clusters are reset on a daily basis. However, only deployments (not designs) that you may have created will be lost.
- In other words, only MeshMap Visualizer is reset. All of your work in Meshery UI and MeshMap Designer will remain in your user account.
- In other words, only Kanvas Visualizer is reset. All of your work in Meshery UI and Kanvas Designer will remain in your user account.
`,
},
{
Expand All @@ -51,11 +51,11 @@ const data = {
`,
},
// {
// question: "What is the difference between the Cloud Native Playground and MeshMap?",
// question: "What is the difference between the Cloud Native Playground and Kanvas?",
// category: "Meshery Playground",
// answer: [
// "The Cloud Native Playground (aka Meshery Playground) is a managed instance of Meshery that offers a sandbox environment in which half of MeshMap functionality is enabled (Designer mode) and the other half of MeshMap functionality is disabled (Visualizer mode).",
// "The sandbox environment is not connected to an active Kuberentes cluster, and as such, depending upon which Meshery Playgrouns environment you use specific actions within MeshMap Designer are also disabled. Meshery and MeshMap are feature-rich, sophisticated management applications for cloud native infrastructure. To access their full set of capabilities, simply deploy your own copy of Meshery into the environment of your choosing.",
// "The Cloud Native Playground (aka Meshery Playground) is a managed instance of Meshery that offers a sandbox environment in which half of Kanvas functionality is enabled (Designer mode) and the other half of Kanvas functionality is disabled (Visualizer mode).",
// "The sandbox environment is not connected to an active Kuberentes cluster, and as such, depending upon which Meshery Playgrouns environment you use specific actions within Kanvas Designer are also disabled. Meshery and Kanvas are feature-rich, sophisticated management applications for cloud native infrastructure. To access their full set of capabilities, simply deploy your own copy of Meshery into the environment of your choosing.",
// ],
// },
{
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";

function MeshMapIcon() {
function KanvasIcon() {
return (
<svg
width="24px"
Expand Down Expand Up @@ -120,4 +120,4 @@ function MeshMapIcon() {
);
}

export default MeshMapIcon;
export default KanvasIcon;
4 changes: 2 additions & 2 deletions site/src/components/Navigation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Toggle } from "../Toggle";
import axios from "axios";
import DefaultAvatar from "./DefaultAvatar";
import CloudIcon from "./CloudIcon";
import MeshMapIcon from "./MeshMapIcon";
import KanvasIcon from "./KanvasIcon";
import LogoutIcon from "./LogoutIcon";
function Navigation({ theme, toggleTheme, showSignUpButton }) {
const [userData, setUserData] = useState(null);
Expand Down Expand Up @@ -136,7 +136,7 @@ setScroll((window.scrollY || window.pageYOffset) > 50)
className="drop-item"
href="https://playground.meshery.io"
>
<MeshMapIcon /> Playground
<KanvasIcon /> Playground
</a>
<a
href="/"
Expand Down

0 comments on commit 091b94c

Please sign in to comment.