diff --git a/src/scenes/home/press/press.js b/src/scenes/home/press/press.js index a61b75f02..050661d7f 100644 --- a/src/scenes/home/press/press.js +++ b/src/scenes/home/press/press.js @@ -4,6 +4,7 @@ import Section from 'shared/components/section/section'; import PressVideos from './pressVideos/pressVideos'; import PressPhotos from './pressPhotos/pressPhotos'; import PressBranding from './pressBranding/pressBranding'; +import PressLinks from './pressLinks/pressLinks'; import styles from './press.css'; const Press = () => ( @@ -71,7 +72,11 @@ const Press = () => ( -
+
+ +
+ +
diff --git a/src/scenes/home/press/pressLinks/pressLinks.css b/src/scenes/home/press/pressLinks/pressLinks.css new file mode 100644 index 000000000..049c49d13 --- /dev/null +++ b/src/scenes/home/press/pressLinks/pressLinks.css @@ -0,0 +1,16 @@ +.logos a { + color: #249cbc; + text-decoration: none; +} + +@media screen and (min-width: 415px) and (max-width: 1280px) { + .logos > .imgBox { + width: 350px; + } +} + +@media screen and (max-width: 414px) { + .logos > .imgBox { + width: 300px; + } +} diff --git a/src/scenes/home/press/pressLinks/pressLinks.js b/src/scenes/home/press/pressLinks/pressLinks.js new file mode 100644 index 000000000..89dec36be --- /dev/null +++ b/src/scenes/home/press/pressLinks/pressLinks.js @@ -0,0 +1,323 @@ +import React from 'react'; +import styles from './pressLinks.css'; + +const ReactGA = require('react-ga'); + +function PressLinks() { + return ( +
+
    +
  • + + TechHire Educator Spotlight: Operation Code + +
  • +
  • + + Why Veterans Will Make Excellent Programmers + +
  • +
  • + + Thousands Of Veterans Want to Learn to Code But Cant + +
  • +
  • + + Hacking Entrepreneurship: An Interview with David Molina of Operation Code + +
  • +
  • + + A Marine Vet’s Path into Coding Brings Him Back Home + +
  • +
  • + + Operation Code: Connecting Veterans with Code Skills + +
  • +
  • + + Operation Code: connecting tech and veterans + +
  • +
  • + + When the call of duty is technology, veterans rally to support each other through + Operation Code + +
  • +
  • + + Get Coding Now with Operation Code Army Veteran and Founder David Molina + +
  • +
  • + + The New Developer - Operation Code - GitHub Universe 2016 + +
  • +
  • + + What happens when military veterans learn to code - CodeConf 2016 + +
  • +
  • + + How Operation Code helps veterans learn programming skills + +
  • +
  • + + Helping Veterans Learn to Code with David Molina + +
  • +
  • + + Podcast from David Molina - Operation Code + +
  • +
  • + + Operation Code and AirBnb + +
  • +
  • + + From Aviation Electrician to Back End Engineering: Bret Funk’s Operation Code story + +
  • +
  • + + Navy Veteran to Software Developer: Geno Guerrero’s Operation Code Story + +
  • +
  • + + From Marine Corps Veteran to Front End Developer: Billy Le’s Operation Code Story + +
  • +
  • + + Few Options For Veterans Loking To Enter Tech + +
  • +
  • + + Coding Boot Camps Go After Veterans To Take Silicon Valleys Vacant Tech Jobs + +
  • +
  • + + 20 Diversity and Inclusion Leaders to Follow in 2018 + +
  • +
  • + + Tech innovation meets military service: GeekWire’s Memorial Day remembrance and update + +
  • +
  • + + MAP Hosts Congressional Briefing on Veterans Readiness in Tech Careers + +
  • +
  • + + Analytics Pros, Inc. Hosts Training for Veterans and Veterans Spouses + +
  • +
  • + + How to pick a programming language to learn for new developers + +
  • +
  • + + How to “upskill” Veterans’ training for technology jobs + +
  • +
  • + + Oregon Veterans News Magazine + +
  • +
  • + + Jameel: From Marines to SoftwareEngineer + +
  • +
  • + + Seattle coding-school tuition to be covered by GI Bill + +
  • +
  • + + Veteran: GI Bill should cover code school + +
  • +
  • + + Patriot Boot Camp and Operation Code join forces to help military veterans become + technology entrepreneurs + +
  • +
  • + + Operation Code wants veterans to work in tech + +
  • +
  • + + Coding Bootcamps Accepts GI Bill + +
  • +
  • + + Operation Code Looks to Help Veterans Land IT Careers + +
  • +
+
+ ); +} + +export default PressLinks;