Skip to content

Commit 5c9ddb0

Browse files
Collaboration Page Completed
1 parent afaac72 commit 5c9ddb0

File tree

7 files changed

+871
-0
lines changed

7 files changed

+871
-0
lines changed

Diff for: package-lock.json

+815
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"@testing-library/jest-dom": "^5.16.5",
77
"@testing-library/react": "^13.4.0",
88
"@testing-library/user-event": "^13.5.0",
9+
"fonts": "^0.0.2",
10+
"google": "^2.1.0",
911
"react": "^18.2.0",
1012
"react-dom": "^18.2.0",
1113
"react-scripts": "5.0.1",

Diff for: src/App.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import React from 'react'
2+
import Collaboration from './components/Collaboration';
23
import Header from "./components/Header";
34

45
const App = () => {
56
return (
67
<div>
78
<Header />
9+
<Collaboration />
810
</div>
911
)
1012
}

Diff for: src/Images/Collaborations_Left.png

9.48 KB
Loading

Diff for: src/Images/D2d 4.png

38.8 KB
Loading

Diff for: src/components/Collaboration.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from "react";
2+
import side from "../Images/Collaborations_Left.png";
3+
import partner from "../Images/D2d 4.png";
4+
import "../styles/collaboration.css";
5+
6+
7+
function Collaboration() {
8+
return(
9+
<div className="collab">
10+
<div className="content">
11+
<h1 className="c-head">Our <span className="sub">Collaborations</span></h1>
12+
<div className="partner">
13+
<img className="side" src={side} alt="side" />
14+
<img className="partner-img" src={partner} alt="partner" />
15+
<img className="partner-img" src={partner} alt="partner" />
16+
<img className="partner-img" src={partner} alt="partner" />
17+
</div>
18+
</div>
19+
</div>
20+
)
21+
}
22+
23+
export default Collaboration;

Diff for: src/styles/collaboration.css

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.collab{
2+
margin-top: 14%;
3+
}
4+
.c-head{
5+
6+
font-family: 'Roboto', sans-serif;
7+
font-style: normal;
8+
font-weight: 700;
9+
font-size: 3rem;
10+
line-height: 120%;
11+
12+
text-align: center;
13+
14+
15+
color: #000000;
16+
}
17+
18+
.sub{
19+
color: #FF0404;
20+
}
21+
22+
.partner{
23+
margin-top: -9.4%;
24+
}
25+
26+
.partner-img{
27+
margin-right: 12%;
28+
margin-bottom: 12%;
29+
}

0 commit comments

Comments
 (0)