-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeader.jsx
More file actions
27 lines (25 loc) · 851 Bytes
/
Copy pathHeader.jsx
File metadata and controls
27 lines (25 loc) · 851 Bytes
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
import React from "react";
function Header() {
return (
<div className="header-div">
<section className="hero--component">
<div className="hero-container" data-align="center">
<h2 className="hero-heading">
Commit to collaborate. Push innovation.
</h2>
<div className="hero-copy">
<p>
Collaborating with a community is about more than developing code.
Collaboration is the freedom to ask questions and offer
improvements—that's the open source way. It's why we've been a
part of open source communities, working side-by-side with people
like you.
</p>
<p>Let's make something together.</p>
</div>
</div>
</section>
</div>
);
}
export default Header;