Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion root-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import CTA_Bottom from "./src/components/Call-To-Actions/CTA_Bottom";
import { ContextWrapper } from "./context-wrapper";
import { IoIosCopy } from "@react-icons/all-files/io/IoIosCopy";
import { IoIosCheckmark } from "@react-icons/all-files/io/IoIosCheckmark";
import SimpleReactLightbox from "simple-react-lightbox";

// Custom image component for better CLS scores
const OptimizedImage = (props) => {
Expand Down Expand Up @@ -118,6 +119,8 @@ const components = {

export const wrapRootElement = ({ element }) => (
<ContextWrapper>
<MDXProvider components={components}>{element}</MDXProvider>
<SimpleReactLightbox>
<MDXProvider components={components}>{element}</MDXProvider>
</SimpleReactLightbox>
</ContextWrapper>
);
15 changes: 13 additions & 2 deletions src/pages/solutions/orchestration-management/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
import React from "react";
import Orchestration from "../../../sections/OrchestrationManagement";
import ServiceMeshFocused from "../../../sections/Home/Service-mesh-focussed";
import SEO from "../../../components/seo";

const OrchestrationManagement = () => {
return (
<>
<Orchestration/>
<Orchestration />
<ServiceMeshFocused bookName={"enterprise-path"} />
</>
);
};

export default OrchestrationManagement;
export default OrchestrationManagement;

export const Head = () => {
return (
<SEO
title="Orchestration Management | Layer5"
description="Optimize and streamline operations through strategic orchestration of your infrastructure."
image="/images/solutions-collaborate.webp"
/>
);
};
2 changes: 1 addition & 1 deletion src/sections/Solutions/images/solutions-cost.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.