diff --git a/src/assets/brand/layer5-social-backgrounds.zip b/src/assets/brand/layer5-social-backgrounds.zip new file mode 100644 index 000000000000..81bfe4ca0119 Binary files /dev/null and b/src/assets/brand/layer5-social-backgrounds.zip differ diff --git a/src/assets/images/social-backgrounds/layer5-charcoal-background.png b/src/assets/images/social-backgrounds/layer5-charcoal-background.png new file mode 100644 index 000000000000..fbc537bac244 Binary files /dev/null and b/src/assets/images/social-backgrounds/layer5-charcoal-background.png differ diff --git a/src/sections/Company/Brand/Brand-components/social-backgrounds.js b/src/sections/Company/Brand/Brand-components/social-backgrounds.js new file mode 100644 index 000000000000..337df577d487 --- /dev/null +++ b/src/sections/Company/Brand/Brand-components/social-backgrounds.js @@ -0,0 +1,41 @@ +import React from "react"; +import { FiDownloadCloud } from "@react-icons/all-files/fi/FiDownloadCloud"; +import Button from "../../../../reusecore/Button"; +import { Col, Row } from "../../../../reusecore/Layout"; +import SocialBackgroundImg from "../../../../assets/images/social-backgrounds/layer5-charcoal-background.png"; + +const SocialBackgrounds = () => { + return ( +
+ + +

+ Layer5 Social Backgrounds +

+ + + + + + + +

+ The Social Background mark includes the Layer5 branding backgrounds that can be used as cover images or background images on Zoom, Twitter, Youtube and Linkedin. +

+ +
+ + + + + Layer5 Social backgrounds + + + +
+ ); +}; + +export default SocialBackgrounds; diff --git a/src/sections/Company/Brand/index.js b/src/sections/Company/Brand/index.js index 1835f17d80b7..b260b42a0736 100644 --- a/src/sections/Company/Brand/index.js +++ b/src/sections/Company/Brand/index.js @@ -20,6 +20,7 @@ const MeshMapBrand = loadable(() => import("./Brand-components/meshmap")); const BrandGuide = loadable(() => import("./Brand-components/brand-guide")); const StickFigures = loadable(() => import("./Brand-components/stickfigures")); const Catalog = loadable(() => import("./Brand-components/catalog")); +const SocialBackgrounds = loadable(() => import("./Brand-components/social-backgrounds")); const getDimensions = (ele) => { let dummyheight = 0, @@ -106,6 +107,7 @@ const Brand = () => { const meshmapRef = useRef(null); const stickfiguresRef = useRef(null); const CatalogRef = useRef(null); + const SocialBackgroundsRef = useRef(null); const sectionRefs = [ { section: "Layer5", ref: layer5Ref }, @@ -121,7 +123,8 @@ const Brand = () => { { section: "MeshMaster", ref: meshMasterRef }, { section: "MeshMap", ref: meshmapRef }, { section: "Five", ref: stickfiguresRef }, - { section: "Catalog", ref: CatalogRef } + { section: "Catalog", ref: CatalogRef }, + { section: "SocialBackgrounds", ref: SocialBackgroundsRef } ]; useEffect(() => { @@ -176,6 +179,9 @@ const Brand = () => {
+
+ +
@@ -228,6 +234,16 @@ const Brand = () => { > Layer5

+

{ + scrollTo(SocialBackgroundsRef.current); + }} + > + Layer5 Social Backgrounds +