Skip to content

Commit

Permalink
Merge pull request #5274 from layer5io/ritiksaxena124/add-section
Browse files Browse the repository at this point in the history
k8s page linked from architecture diagram page
  • Loading branch information
ritiksaxena124 authored Jan 8, 2024
2 parents 02d7d1a + d463de6 commit e850223
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RelatedPicks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const RelatedPicks = ({ content }) => {
return (
<>
<Container>
<h2>You may also like</h2>
<h2>Other Supported Platforms</h2>
<Wrapper>
{
content.map(item => (
Expand Down
8 changes: 8 additions & 0 deletions src/sections/ArchitectureDiagram/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import GCPDiagramDark from "../GCP-Diagram/images/gcp-diagram-dark.svg";
import GCPDiagramLight from "../GCP-Diagram/images/gcp-diagram-light.svg";
import AWSDiagramDark from "../Home/FeaturesContainer/images/aws.svg";
import AWSDiagramLight from "../Home/FeaturesContainer/images/aws-light.svg";
import KubernetesDark from "../Kubernetes-Diagram/images/kubernetes.svg";
import KubernetesLight from "../Kubernetes-Diagram/images/kubernetes-light.svg";
import { useStyledDarkMode } from "../../theme/app/useStyledDarkMode";
let data = {
heading: "Design Architecture Diagram Online",
Expand Down Expand Up @@ -61,6 +63,12 @@ const ArchitectureDiagram = () => {
title: "AWS architecture diagram",
redirectLink: "/cloud-native-management/generate-aws-architecture-diagram",
imgSrc: isDark ? AWSDiagramDark : AWSDiagramLight,
},
{
id: 3,
title: "Kubernetes architecture diagram",
redirectLink: "/cloud-native-management/generate-kubernetes-architecture-diagram",
imgSrc: isDark ? KubernetesDark : KubernetesLight,
}
];
return (
Expand Down

0 comments on commit e850223

Please sign in to comment.