From f8ea4e36bb31b4cb9af091b8a97e475a8c7153cd Mon Sep 17 00:00:00 2001 From: Debopriya Bhattacharjee Date: Sun, 12 Jun 2022 23:19:26 +0530 Subject: [PATCH] media kit Signed-off-by: Debopriya Bhattacharjee --- src/sections/Company/News-grid/index.js | 2 + src/sections/Company/News-grid/press.js | 113 ++++++++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 src/sections/Company/News-grid/press.js diff --git a/src/sections/Company/News-grid/index.js b/src/sections/Company/News-grid/index.js index 6dfbdaed23b7..8ba71f103a50 100644 --- a/src/sections/Company/News-grid/index.js +++ b/src/sections/Company/News-grid/index.js @@ -8,6 +8,7 @@ import Button from "../../../reusecore/Button"; import SearchBox from "../../../reusecore/Search"; import { useEffect } from "react"; import useDataList from "../../../utils/usedataList"; +import Press from "./press"; let coverageFiltered= false; let pressReleaseFiltered=false; @@ -108,6 +109,7 @@ const NewsGrid = ({data}) => { + ); }; diff --git a/src/sections/Company/News-grid/press.js b/src/sections/Company/News-grid/press.js new file mode 100644 index 000000000000..d4d2cfc5a2bd --- /dev/null +++ b/src/sections/Company/News-grid/press.js @@ -0,0 +1,113 @@ +import React from "react"; +import styled from "styled-components"; +import Button from "../../../reusecore/Button"; +import { Link } from "gatsby"; +import { Container, Row, Col } from "../../../reusecore/Layout"; +import { FiMail } from "@react-icons/all-files/fi/FiMail"; +import { GrGithub } from "@react-icons/all-files/gr/GrGithub"; +import { GrLinkedin } from "@react-icons/all-files/gr/GrLinkedin"; +import { GrTwitter } from "@react-icons/all-files/gr/GrTwitter"; +import { GrYoutube } from "@react-icons/all-files/gr/GrYoutube"; +import { FaDocker } from "@react-icons/all-files/fa/FaDocker"; +import { FaDiscourse } from "@react-icons/all-files/fa/FaDiscourse"; +import FiveIcon from "../../../assets/images/layer5/5 icon/svg/light/5-light-no-trim.svg"; + +const PressWrapper = styled.div` +padding: 2rem 0; +background: ${props => props.theme.secondaryLightColor}; +h2{ + text-align: center; + border-top: 4px solid #00b39f; + border-bottom: 4px solid #00b39f; + margin: 1rem 40% 2rem; + padding: 1rem 0; +} +h4, h5{ + text-align: center; +} + +.press_card { + background: ${props => props.theme.white}; + transition: 450ms all; + height: 15rem; + border: 1px solid ${props => props.theme.shadowLightColor}; + &:hover{ + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); + } + padding: 12% 6% 12% 6%; + border-radius: 4%; + margin 1rem 0 3rem; + text-align: center; + h5{ + font-weight: 700; + color: ${props => props.theme.secondaryColor} + } + p{ + font-weight: 300; + color: ${props => props.theme.black}; + } + @media screen and (max-width: 768px) { + margin: 6% 15%; + padding: 6% 10%; + height: auto; + } +} +.icon{ + padding: 0 0.25rem; +} +img{ + margin: 0 0 0.5rem; +} +`; + + + +const Press = () => { + return ( + + +

Media Kit

+

For any press or analyst inquiries, please reach out:

+ + + +
+
Media Contacts
+

Kate Suttons

+ +

press@layer5.io

+
+
+ + + +
+
Brand Kit
+

Get our brand, logo assets and more.

+ Five Logo
+ +
+ + + +
+
Follow Us
+

On Social Media

+ + + +
+ + + +
+ +
+
+
+ ); +}; + +export default Press;