Skip to content

Commit

Permalink
Merge pull request #4184 from Shivam-AfA/playgroundPage
Browse files Browse the repository at this point in the history
Adding the Playground page to layer5.io
  • Loading branch information
leecalcote authored May 24, 2023
2 parents 08cee2f + 7815f1c commit 840c119
Show file tree
Hide file tree
Showing 13 changed files with 2,024 additions and 8 deletions.
15 changes: 15 additions & 0 deletions src/pages/cloud-native-management/playground.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from "react";
import SEO from "../../components/seo";
import Playground from "../../sections/Playground";

const PlaygroundPage = () => {
return (
<>
<Playground/>
</>
);
};
export default PlaygroundPage;
export const Head = () => {
return <SEO title="Cloud Native Playground" description="Meshery CNCF Playground - The cloud native playground for Kubernetes and all CNCF projects" />;
};
2 changes: 1 addition & 1 deletion src/sections/General/Navigation/utility/menu-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const Data = {
},
{
name: "Playground",
path: "https://play.meshery.io",
path: "/cloud-native-management/playground",
},
{
name: "Nighthawk",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ const CollaborationFeatureWrapper = styled.div`
transition: opacity ease-out 0.5s;
.collab4-colorMode_svg__colorMode1
{
fill: ${props => props.theme.whiteToBlack}
fill: ${props => props.theme.whiteToBlack};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.collab4-colorMode_svg__colorMode2{
fill: ${props => props.theme.greyB4B4B4ToGrey505050}
fill: ${props => props.theme.greyB4B4B4ToGrey505050};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.collab4-colorMode_svg__colorMode3{
fill: ${props => props.theme.blackToWhite}
fill: ${props => props.theme.blackToWhite};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media only screen and (max-width: 767px) {
Expand Down Expand Up @@ -112,7 +112,7 @@ const CollaborationFeatureTeam = () => {
</div>
<div className="hero-text">
<h2><span>Collaborate with your Team</span></h2>
<p>Build an iterative design flow with live collaboration that keeps you in the loop whether you’re working in the office or remotely.</p>
<p>Build an iterative design flow with live collaboration that keeps you in the loop whether you are working in the office or remotely.</p>
</div>
</div>
</CollaborationFeatureWrapper>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const CollaborationBannerWrapper = styled.div`
.service-interface {
scale: 1;
}
}
`;

const MeshmapCollaborateBanner = () => {
Expand Down
Loading

0 comments on commit 840c119

Please sign in to comment.