-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathBanner.js
More file actions
124 lines (122 loc) · 3.69 KB
/
Banner.js
File metadata and controls
124 lines (122 loc) · 3.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import React from "react";
import styles from "../CSS/Banner.module.css";
import { Container, Row, Col, Jumbotron, Image } from "react-bootstrap";
import code from "../assets/code.svg";
import girl from "../assets/girl.svg";
import smallscreen from "../assets/smallscreen.png";
import { Link } from "react-scroll";
import {
FaLinkedinIn,
FaInstagram,
FaTwitter,
FaRegLightbulb,
FaGithub,
} from "react-icons/fa";
export default function Banner() {
return (
<Jumbotron id="home" className={styles.Jumbotron} fluid>
<div className={styles.SocialLinks1}>
<div className={styles.divshift1}>
<a
href="https://www.linkedin.com/company/14568052/admin/"
target="_blank"
className={styles.Shift1}
>
{" "}
<FaLinkedinIn />{" "}
</a>
</div>
<div className={styles.divshift1}>
<a
href="https://www.instagram.com/girlcodeit/"
target="_blank"
className={styles.Shift1}
>
{" "}
<FaInstagram />{" "}
</a>
</div>
<div className={styles.divshift1}>
<a
href="https://twitter.com/GirlCodeIt1"
target="_blank"
className={styles.Shift1}
>
{" "}
<FaTwitter />{" "}
</a>
</div>
<div className={styles.divshift1}>
<a
href="https://github.com/Girl-Code-It"
target="_blank"
className={styles.Shift1}
>
{" "}
<FaGithub />{" "}
</a>
</div>
</div>
<Container className={styles.container}>
<Row>
<Col md={6} lg={7}>
<h1 className={styles.heading}>
From Will<br className={styles.align} /> to
<span style={{ color: "#008dc8" }}> Skill </span>
</h1>
<div className={styles.rectangle} />
<a className={styles.Button}>
<Link
to="impact"
offset={-200}
duration={1000}
style={{ color: "white" }}
>
Our courses
</Link>
</a>
<br className={styles.set} />
<br className={styles.align} />
<br className={styles.align} />
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSccNJQ-1Jf8T6JVLmCr_evXRVGqKO6SBJNyZ5rdRyMqPzMHHg/viewform"
className={styles.Button}
style={{ marginLeft: "80px" }}
>
Volunteer
</a>
</Col>
<Col md={6} lg={5}>
<Image className={styles.code} src={code} alt="code" fluid />
<Image className={styles.girl} src={girl} alt="girl" fluid />
</Col>
</Row>
</Container>
<Container className={styles.containersmall} fluid>
<h1 style={{ textAlign: "center" }} className={styles.heading}>
From Will <br className={styles.align} /> to
<span style={{ color: "#008dc8" }}> Skill </span>
<div className={styles.Rectsmall} />
</h1>
<Image
className="justify-content-md-center img"
style={{ maxWidth: "90%" }}
src={smallscreen}
alt="girl code"
fluid
/>
<br />
<br />
<a href="#about" className={styles.Button}>
About Us
</a>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSccNJQ-1Jf8T6JVLmCr_evXRVGqKO6SBJNyZ5rdRyMqPzMHHg/viewform/"
className={styles.Button}
>
Volunteer
</a>
</Container>
</Jumbotron>
);
}