|
| 1 | +import React from "react"; |
| 2 | + |
| 3 | +const pmc_chair_quote = `"Earlier this year, I was selected by my fellow PMC members as the project’s VP. The main role of the VP is to report |
| 4 | + quarterly to the Apache Software Foundation Board, |
| 5 | + representing CloudStack and providing updates on the health |
| 6 | + and status of the project. I am grateful for the opportunity |
| 7 | + to serve as the CloudStack VP and to work with amazing people |
| 8 | + from the community to continue making CloudStack an even |
| 9 | + greater cloud orchestration platform!"` |
| 10 | + |
| 11 | +const pmc_chair_name = "Nicolás Vázquez" |
| 12 | +const pmc_chair_picture = "/img/authors/nicolas.png" |
| 13 | +const pmc_chair_githandle = "nvazquez" |
| 14 | +const pmc_chair_linked = "nvazquezuy" |
| 15 | + |
| 16 | +const git_link = "https://github.com/"+pmc_chair_githandle |
| 17 | +const linked_link = "https://www.linkedin.com/in/"+pmc_chair_linked |
| 18 | + |
| 19 | +export default function VP(): JSX.Element { |
| 20 | + return <> |
| 21 | + <div className="row"> |
| 22 | + <div className="col col--3"> |
| 23 | + |
| 24 | +<img src={pmc_chair_picture} alt={pmc_chair_name} className="blog-image"/> |
| 25 | + |
| 26 | + </div> |
| 27 | + <div className="col col--9"> |
| 28 | + |
| 29 | + <div className="row"> |
| 30 | + <div className="col"> |
| 31 | + <p> |
| 32 | + PMC Chair: <b>{pmc_chair_name}</b> |
| 33 | + </p> |
| 34 | + </div> |
| 35 | + <div className="col col--2"> |
| 36 | + <p> |
| 37 | + <a href={git_link} target="_blank"> |
| 38 | + <img src="/img/git_logo.svg" width="20px" alt=""/> |
| 39 | + </a> |
| 40 | + |
| 41 | + <a href={linked_link} target="_blank"> |
| 42 | + <img src="/img/social/LinkedIn-Blue.png" width="20px" alt=""/> |
| 43 | + </a> |
| 44 | + </p> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + <p> |
| 48 | + |
| 49 | + {pmc_chair_quote} |
| 50 | + |
| 51 | + </p> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + </> |
| 55 | +} |
0 commit comments