-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.js
More file actions
52 lines (46 loc) · 1.88 KB
/
index.js
File metadata and controls
52 lines (46 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import React from "react";
import { Container, Row, Col } from "../../../reusecore/Layout";
import SectionTitle from "../../../reusecore/SectionTitle";
import Button from "../../../reusecore/Button";
import VintageBox from "../../../reusecore/VintageBox";
import { FaMapMarkedAlt } from "@react-icons/all-files/fa/FaMapMarkedAlt";
import { FiDownloadCloud } from "@react-icons/all-files/fi/FiDownloadCloud";
import Backgroundsvg from "./assets/images/background.svg";
import Banner1SectionWrapper from "./banner1.style";
const Banner1 = (props) => {
return (
<Banner1SectionWrapper {...props} >
<Container >
<img loading="eager" fetchpriority="high" alt="hero-image" src={Backgroundsvg} className="background-svg" />
<Row>
<Col $sm={8} $lg={8} className="section-title-wrapper">
<SectionTitle
className="section-title"
$leftAlign={true}
$UniWidth="100%"
>
<h1>Cloud Native Management</h1>
<h2>
of <span>developer</span>-defined infrastructure
</h2>
</SectionTitle>
<p>
an open source-first community of cloud native engineers
</p>
<span className="vintage-box-container">
<VintageBox $right={true} $vintageOne={true}>
<Button $primary className="banner-btn one" title="Join in" $url="/community">
<FaMapMarkedAlt size={21} className="icon-left" />
</Button>
<Button $primary className="banner-btn two" title="See Meshery" $url="/cloud-native-management/meshery">
<FiDownloadCloud size={21} className="icon-left" />
</Button>
</VintageBox>
</span>
</Col>
</Row>
</Container>
</Banner1SectionWrapper>
);
};
export default Banner1;