Skip to content

Commit cb95e23

Browse files
committed
Merge branch 'shreesha'
2 parents 330b2b7 + 05d9cb2 commit cb95e23

File tree

2 files changed

+121
-0
lines changed

2 files changed

+121
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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+

src/Styles/LandingPage/_About.scss

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.About{
2+
padding-bottom: 3rem;
3+
&-row1{
4+
margin-bottom: 3rem;
5+
margin-top: 1rem;
6+
display: flex;
7+
align-items: center;
8+
&__col1{
9+
display: flex;
10+
justify-content: center;
11+
}
12+
&__col2{
13+
&__introduction
14+
{
15+
@extend .Head-description;
16+
text-align: left;
17+
margin-bottom: 2rem;
18+
}
19+
}
20+
}
21+
&-MissionVision{
22+
padding: 0.75rem 0rem;
23+
font-family: $font;
24+
font-style: italic;
25+
&__head{
26+
font-size: 1.25rem;
27+
font-weight: 500;
28+
color: #000080;
29+
}
30+
&__description{
31+
font-size: 15px;
32+
font-weight: 300;
33+
}
34+
}
35+
&-values{
36+
@extend .About-MissionVision__head;
37+
text-align: center;
38+
color: #000080;
39+
&__title{
40+
font-size: 1rem;
41+
font-weight: 400;
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)