-
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 branch 'master' of github.com:layer5io/layer5 into sistent
Signed-off-by: lakshya <[email protected]>
- Loading branch information
Showing
17 changed files
with
1,013 additions
and
393 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,15 @@ | ||
--- | ||
name: Cesar Roman | ||
position: Contributor | ||
image_path: ./cesar-roman.webp | ||
github: cesartheroman | ||
twitter: cesartheroman | ||
linkedin: cesartheroman | ||
layer5: ec5a1cd6-e03f-4aa8-9bca-1334e20042ff | ||
location: Chicago, IL | ||
bio: I'm a Chicago-based, "Boogie Down Bronx" raised, full stack software engineer specializing in JavaScript, TypeScript, React, and Node. | ||
badges: | ||
- ui-ux | ||
status: Active | ||
published: true | ||
--- |
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
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
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
Oops, something went wrong.