-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5451 from layer5io/ritiksaxena124/social-backgrounds
layer5 social backgrounds added on brand page
- Loading branch information
Showing
5 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions
41
src/sections/Company/Brand/Brand-components/social-backgrounds.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ( | ||
<div className="post-content"> | ||
<Row className="brand-section"> | ||
<Col xs={12} sm={6}> | ||
<h1 className="layerH3"> | ||
<strong> Layer5 Social Backgrounds </strong> | ||
</h1> | ||
</Col> | ||
<Col xs={12} sm={6} className="download-button"> | ||
<a href="/brand/layer5-social-backgrounds.zip"> | ||
<Button primary title="Download Social Backgrounds"> | ||
<FiDownloadCloud size={21} className="icon-left" /> | ||
</Button> | ||
</a> | ||
</Col> | ||
<Col> | ||
<p> | ||
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. | ||
</p> | ||
</Col> | ||
</Row> | ||
|
||
<Row> | ||
<Row Vcenter className="ImgDiv"> | ||
<Col xs={12} className="social-backgrounds"> | ||
<img src={SocialBackgroundImg} alt="Layer5 Social backgrounds" /> | ||
</Col> | ||
</Row> | ||
</Row> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SocialBackgrounds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.