|
1 | 1 | import React, { Component } from 'react'; |
2 | 2 | import Section from 'shared/components/section/section'; |
3 | | -import apexPartnerImage from 'images/partners/apex.jpg'; |
| 3 | +import apexLogo from 'images/partnerLogos/apex_systems_logo.jpg'; |
| 4 | +import githubLogo from 'images/partnerLogos/github_logo.jpg'; |
| 5 | +import dockerLogo from 'images/partnerLogos/docker_logo.jpg'; |
| 6 | +import oreillyLogo from 'images/partnerLogos/oreilly_logo.jpg'; |
| 7 | +import hackerrankLogo from 'images/partnerLogos/hackerrank_logo.jpg'; |
4 | 8 | import styles from './partners.css'; |
5 | 9 |
|
6 | 10 |
|
7 | 11 | class Partners extends Component { |
8 | 12 | render() { |
9 | 13 | return ( |
10 | | - <Section className={styles.partnersSection} theme="white"> |
11 | | - <Section title="Partners" className={styles.partnersLeft} theme="white"> |
12 | | - <div className={styles.partners}> |
13 | | - <p> |
14 | | - Thanks to our partners, our all-volunteer organization at |
15 | | - Operation Code continues to serve the military community. |
16 | | - We are deeply grateful to the leadership of these |
17 | | - organizations that are supporting our mission. |
18 | | - </p> |
| 14 | + <Section |
| 15 | + title="Partners" |
| 16 | + theme="white" |
| 17 | + margin |
| 18 | + > |
| 19 | + <div className={styles.partners}> |
| 20 | + <p> |
| 21 | + Thanks to our partners, our all-volunteer organization at |
| 22 | + Operation Code continues to serve the military community. |
| 23 | + We are deeply grateful to the leadership of these |
| 24 | + organizations that are supporting our mission. |
| 25 | + </p> |
| 26 | + </div> |
| 27 | + |
| 28 | + <div className={styles.partnerLogos}> |
| 29 | + <div> |
| 30 | + <a href="https://apexsystems.com/"> |
| 31 | + <img src={apexLogo} alt="Apex Systems" width="200" /> |
| 32 | + </a> |
| 33 | + </div> |
| 34 | + <div> |
| 35 | + <a href="https://github.com/"> |
| 36 | + <img src={githubLogo} alt="GitHub" width="200" /> |
| 37 | + </a> |
| 38 | + </div> |
| 39 | + <div> |
| 40 | + <a href="https://docker.com/"> |
| 41 | + <img src={dockerLogo} alt="Docker" width="200" /> |
| 42 | + </a> |
| 43 | + </div> |
| 44 | + <div> |
| 45 | + <a href="https://oreilly.com/"> |
| 46 | + <img src={oreillyLogo} alt="O'Reilly Media" width="200" /> |
| 47 | + </a> |
| 48 | + </div> |
| 49 | + <div> |
| 50 | + <a href="https://hackerrank.com/"> |
| 51 | + <img src={hackerrankLogo} alt="HackerRank" width="200" /> |
| 52 | + </a> |
19 | 53 | </div> |
20 | | - </Section> |
21 | | - <Section className={styles.partnersRight} theme="white"> |
22 | | - <p><img src={apexPartnerImage} alt="Apex" className={styles.apexLogo} /></p> |
23 | | - <p> GitHub </p> |
24 | | - <p> Docker </p> |
25 | | - </Section> |
| 54 | + </div> |
26 | 55 | </Section> |
27 | 56 | ); |
28 | 57 | } |
|
0 commit comments