Skip to content

Commit

Permalink
Merge pull request #4302 from ritiksaxena124/ritiksaxena124/dev
Browse files Browse the repository at this point in the history
Layer5 brand guide added
  • Loading branch information
Shivam-AfA committed Jun 4, 2023
2 parents fface5c + b79a006 commit 1e81720
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 0 deletions.
Binary file added src/assets/brand/brand-guide.pdf
Binary file not shown.
Binary file added src/assets/images/Brand-Guide/brand-guide.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions src/sections/Company/Brand/Brand-components/brand-guide.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import React from "react";
import styled from "styled-components";
import Button from "../../../../reusecore/Button";
import BrandGuideImg from "../../../../assets/images/Brand-Guide/brand-guide.png";
import BrandGuidePDF from "../../../../assets/brand/brand-guide.pdf";

import { Row, Col } from "../../../../reusecore/Layout";
import { FiDownloadCloud } from "@react-icons/all-files/fi/FiDownloadCloud";
import { Link } from "gatsby";

const Layer5Wrapper = styled.section`
@media (max-width:575px){
.brandHeader{
padding: 3rem 0;
}
}
`;

const BrandGuide = () => {
return (
<>
<Layer5Wrapper>
<div className="post-content">
<Row className="brand-section">
<Col xs={12} sm={6}>
<h1 className="layerH3">
Brand Guide
</h1>
</Col>
<Col xs={12} sm={6} className="download-button">
<a href="/brand/brand-guide.pdf">
<Button primary title="Download Brand Guide" external={false}>
<FiDownloadCloud size={21} className="icon-left" />
</Button>
</a>
</Col>
<Col>
<p>
A Layer5 brand guide is a comprehensive document that outlines the guidelines and standards for presenting and representing the Layer5 brand consistently. It serves as a vital resource for employees, partners, and external agencies to ensure that the Layer5 brand is presented consistently, accurately, and in line with the brand's values and messaging.
</p>
</Col>
</Row>
<Row>
<Col xs={12}>
<Row className="bookmarks">
<Link to={BrandGuidePDF}>
<img className="bookmarks" src={BrandGuideImg} alt="Layer5 Brand Guide" />
</Link>
</Row>
</Col>
</Row>
</div>
</Layer5Wrapper>
</>
);
};

export default BrandGuide;
4 changes: 4 additions & 0 deletions src/sections/Company/Brand/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const ServiceMeshPatterns = loadable(() => import ("./Brand-components/serviceme
const MeshMasterBrand = loadable(() => import ("./Brand-components/meshmaster"));
const MeshMarkBrand = loadable(() => import ("./Brand-components/meshmark"));
const MeshMapBrand = loadable(() => import ("./Brand-components/meshmap"));
const BrandGuide = loadable(() => import("./Brand-components/brand-guide"));

const getDimensions = (ele) => {
let dummyheight = 0,
Expand Down Expand Up @@ -163,6 +164,9 @@ const Brand = () => {
</div>
<Row className="brand-row">
<Col xs={12} md={9} className="brand-col">
<div className="section">
<BrandGuide />
</div>
<div className="section" ref={layer5Ref}>
<Layer5Brand />
</div>
Expand Down
Binary file added static/brand/brand-guide.pdf
Binary file not shown.
Binary file modified static/brand/brand-kit.zip
Binary file not shown.

0 comments on commit 1e81720

Please sign in to comment.