|
| 1 | +import Title from "./title"; |
| 2 | +import Container from "react-bootstrap/Container"; |
| 3 | +import Row from "react-bootstrap/Row"; |
| 4 | +import Col from "react-bootstrap/Col"; |
| 5 | +import img from "../../assets/LandingPage/about.jpg"; |
| 6 | + |
| 7 | +function AboutUs() { |
| 8 | + const MissionVissionArray = [ |
| 9 | + { |
| 10 | + head: "Our Mission", |
| 11 | + description: |
| 12 | + "To unite tech enthusiasts of all ages for knowledge sharing, collaboration, and skill development in a supportive community", |
| 13 | + }, |
| 14 | + { |
| 15 | + head: "Our Vision", |
| 16 | + description: |
| 17 | + "To build a global network where all generations drive tech advancement and share diverse perspectives.", |
| 18 | + }, |
| 19 | + ]; |
| 20 | + |
| 21 | + const ValuesAttay= [ |
| 22 | + { |
| 23 | + title:" Inclusivity", |
| 24 | + description:" We welcome tech enthusiasts of all ages and backgrounds, fostering a diverse community by ensuring every voice is heard and valued." |
| 25 | + }, |
| 26 | + { |
| 27 | + title:" Collaboration", |
| 28 | + description:"We drive collective innovation by encouraging members to share knowledge, ideas, and resources." |
| 29 | + }, |
| 30 | + { |
| 31 | + title:" Continuous Learning", |
| 32 | + description:" We stay at the forefront of technology by providing ongoing opportunities for personal and professional skill development." |
| 33 | + } |
| 34 | + ] |
| 35 | + |
| 36 | + return ( |
| 37 | + <> |
| 38 | + <Container className="About"> |
| 39 | + <Title title={"About NEPTECH Tribe"} head={"Who Are We "} /> |
| 40 | + <Row className="About-row1"> |
| 41 | + <Col md={6} className="About-row1__col1"> |
| 42 | + <img src={img} alt="About Image" /> |
| 43 | + </Col> |
| 44 | + <Col md={6} className="About-row1__col2"> |
| 45 | + <p className="About-row1__col2__introduction"> |
| 46 | + <b> NepTech Tribe </b> is a non-profit organization that unites |
| 47 | + tech enthusiasts of all ages to share knowledge and foster |
| 48 | + innovation. We offer events and activities to enhance skills and |
| 49 | + encourage collaboration, aiming to drive technological progress |
| 50 | + and create a supportive community. |
| 51 | + </p> |
| 52 | + <div> |
| 53 | + {MissionVissionArray.map((item, index) => ( |
| 54 | + <div key={index} className="About-MissionVision"> |
| 55 | + <h3 className="About-MissionVision__head">{item.head}</h3> |
| 56 | + <p className="About-MissionVision__description">{item.description}</p> |
| 57 | + </div> |
| 58 | + ))} |
| 59 | + </div> |
| 60 | + </Col> |
| 61 | + </Row> |
| 62 | + <Row> |
| 63 | + <h3 className="About-values">Our Values</h3> |
| 64 | + {ValuesAttay.map((value , index) => ( |
| 65 | + <Col md={4} style={{textAlign:'center',padding:'1rem',fontStyle:'italic'}}> |
| 66 | + <h5 className="About-values__title">{value.title}</h5> |
| 67 | + <p className="About-MissionVision__description">{value.description}</p> |
| 68 | + </Col> |
| 69 | + ))} |
| 70 | + </Row> |
| 71 | + </Container> |
| 72 | + </> |
| 73 | + ); |
| 74 | +} |
| 75 | + |
| 76 | +export default AboutUs; |
| 77 | + |
0 commit comments