Skip to content

Update Cloud Cost Control Page #6618

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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
19 changes: 19 additions & 0 deletions src/pages/solutions/cloud-cost-control/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

import React from "react";
import SEO from "../../../components/seo";
import CloudCostControl from "../../../sections/Cloud-Cost-Control";

const CloudCostControlPage = () => {
return (
<>
<CloudCostControl />
</>
);
};
export default CloudCostControlPage;
export const Head = () => {
return <SEO title="Cloud Cost Control"
description="Optimize costs, reduce risks, and take control of infrastructure with Layer5’s cloud-native management solutions."
image={"/images/solutions-cost.png"}
/>;
};
103 changes: 103 additions & 0 deletions src/sections/Cloud-Cost-Control/header.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
import React from "react";
import styled from "styled-components";
import { Row, Col, Container } from "../../reusecore/Layout";
import HeaderImage from "./images/solutions-cost.svg";
import Button from "../../reusecore/Button";

const SolutionsHeaderWrapper = styled.div`
.solutions.header {
min-height: 35rem;
background: ${({ theme }) => theme.linearToGreen};
display: flex;
align-items: center;
align-content: space-between;
flex-direction: column;
justify-content: center;
.header__detail {
display: flex;
flex-direction: column;
}
.header__title {
color: ${(props) => props.theme.primaryColor};
padding-right: 80px;
margin-bottom: 20px;
}
.header__title_description {
color: ${(props) => props.theme.tertiaryColor};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
font-weight: 400;
font-size: 1.438rem;
line-height: 2rem;
padding-right: 80px;
margin-bottom: 30px;
}
.solution-hero {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
img {
max-width: 70%;
}
}
@media screen and (max-width: 992px) {
padding-bottom: 100px;
.solution-hero {
margin: 50px 0 0 0;
}
}
@media screen and (max-width: 768px) {
padding: 50px 0;
.header__detail {
display: flex;
flex-direction: column;
}
.header__title {
padding-right: 0;
text-align: center;
margin-bottom: 10px;
}
.header__title_description {
padding-right: 0;
text-align: center;
margin-bottom: 20px;
}
.header__button_section {
display: flex;
justify-content: center;
}
}
}
`;

const SolutionHeader = () => {
return (
<SolutionsHeaderWrapper>
<div className="solutions header">
<Container>
<Row className="row">
<Col className="col header__detail" md={6}>
<h1 className="header__title">Cost, incident and chaos oversight</h1>
<p className="header__title_description">
Save cost, reduce risk and manage infrastructure failure.
</p>
<div className="header__button_section">
<Button
$secondary
title="Book a demo"
$external={true}
$url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true"
/>
</div>
</Col>
<Col className="col solution-hero" $md={6}>
<img src={HeaderImage} alt="hero image" />
</Col>
</Row>
</Container>
</div>
</SolutionsHeaderWrapper>
);
};

export default SolutionHeader;
4 changes: 4 additions & 0 deletions src/sections/Cloud-Cost-Control/images/chaos-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/sections/Cloud-Cost-Control/images/deploy-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading