Skip to content

Commit 2d86ea8

Browse files
Merge pull request #7113 from Rajesh-Nagarajan-11/feature/solution-page
Feature/solution page
2 parents a88f97f + d5cadf3 commit 2d86ea8

37 files changed

Lines changed: 2814 additions & 2 deletions

fonts.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,27 @@
145145
font-weight: 100;
146146
font-style: italic;
147147
font-display: swap;
148+
}
149+
@font-face {
150+
font-family: "Open Sans";
151+
font-style: normal;
152+
font-weight: 400;
153+
font-display: swap;
154+
src: url("./static/fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
155+
}
156+
157+
@font-face {
158+
font-family: "Open Sans";
159+
font-style: normal;
160+
font-weight: 600;
161+
font-display: swap;
162+
src: url("./static/fonts/open-sans/OpenSans-SemiBold.ttf") format("truetype");
163+
}
164+
165+
@font-face {
166+
font-family: "Open Sans";
167+
font-style: normal;
168+
font-weight: 700;
169+
font-display: swap;
170+
src: url("./static/fonts/open-sans/OpenSans-Bold.ttf") format("truetype");
148171
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import React from "react";
2+
3+
import SEO from "../../../components/seo";
4+
5+
import Solutions from "../../../sections/Solutions/index";
6+
7+
const SolutionsPage = () => {
8+
return (
9+
<>
10+
<Solutions/>
11+
</>
12+
);
13+
};
14+
export default SolutionsPage;
15+
export const Head = () => {
16+
return <SEO title="Solutions" description="Collaboratively design and manage your Kubernetes workloads and Cloud services, infrastructure, and cloud native apps. Confidently configure your systems with Kanvas's visual topology and built-in design patterns." />;
17+
};

src/sections/General/Footer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const Footer = ({ location }) => {
215215
</div>
216216
<div className="footer-sections odd-col">
217217
<h3 className="section-title">
218-
<Link className="title-link" to="/kanvas">
218+
<Link className="title-link" to="/cloud-native-management/solutions">
219219
SOLUTIONS
220220
</Link>
221221
</h3>

src/sections/General/Navigation/utility/menu-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const Data = {
55
menuItems: [
66
{
77
name: "Solutions",
8-
path: "/cloud-native-management/kanvas",
8+
path: "/cloud-native-management/solutions",
99
subItems: [
1010
{
1111
name: "Developer-defined Infrastructure",
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)