From 5ad456281d0af792d197acbf19e059459adc058d Mon Sep 17 00:00:00 2001 From: AswaniBolisetti Date: Mon, 28 Oct 2024 23:11:17 +0530 Subject: [PATCH] enhanced about us page --- client/src/component/About.jsx | 122 ++++++++++++--------------------- client/src/css/About.css | 9 ++- 2 files changed, 51 insertions(+), 80 deletions(-) diff --git a/client/src/component/About.jsx b/client/src/component/About.jsx index 5d849e4..6acee61 100644 --- a/client/src/component/About.jsx +++ b/client/src/component/About.jsx @@ -1,5 +1,5 @@ import "../css/About.css"; -import PropTypes from 'prop-types'; +import PropTypes from 'prop-types'; // import { useEffect } from "react"; import img1 from "../assets/images/Anuj.png"; import img2 from "../assets/images/Jitendra.png"; @@ -98,7 +98,7 @@ export default function About(props) {

- Our Team +
Our Team

{/* card 1 */} @@ -237,83 +237,49 @@ export default function About(props) { {/* FAQ */}
-
-
-

Frequently Asked Questions

-
-
-
-

- -

-
-
- Yeah, definitely. The organization is meant to assist the - beginners grow in the field of development. We’ll have distinct - projects appropriate both for beginners as well as the accolades - and thereby we’ll make sure that each and every participant gets - to learn something new from the projects he or she is - contributing for. -
-
-
-
-

- -

-
-
- No, there are no fees associated with participation. It is completely free of charge. -
-
-
-
-

- -

-
-
- No, there are no age restrictions for joining GSSoC. All age groups are welcome to participate. -
-
-
- -
-

- -

-
-
- Projects are not bound by specific conditions. Mentors can propose ideas in their areas of expertise without restriction. -
-
-
+
+

+ Frequently Asked Questions +

+
+ {[ + { + question: "Will a beginner, with absolutely no knowledge of GitHub, gain anything fruitful?", + answer: "Absolutely! This program is designed to guide beginners, with projects and support for all experience levels." + }, + { + question: "Are there any charges for registration?", + answer: "No, participating in this program is entirely free with no hidden costs." + }, + { + question: "Is there a specific age requirement for participation?", + answer: "There are no age restrictions! People of all ages are welcome to join and contribute." + }, + { + question: "What are the project requirements?", + answer: "Projects are open-ended, allowing mentors to share ideas in their fields of expertise without restrictions." + }, + { + question: "As a beginner, where should we begin to contribute effectively to projects?", + answer: "The resources on our website, including GitHub links and tutorials, will help you contribute effectively." + }, + ].map((item, index) => ( +
+ +

+ {item.answer} +

+
+ ))} +
+
-
-

- -

-
-
- You can kickstart your journey by accessing the resources available on our official website. We offer links to GitHub and other development tools to ensure that everyone can contribute effectively to the projects. -
-
-
-
-
-
-
{/* Info */} {/*
diff --git a/client/src/css/About.css b/client/src/css/About.css index c596b58..2728fc7 100644 --- a/client/src/css/About.css +++ b/client/src/css/About.css @@ -1,7 +1,7 @@ /* Hero About Section */ .about-main-section { max-width: 1780px; - min-height: 90vh; + min-height: 90vh; display: flex; flex-direction: column; gap: 2rem; @@ -646,8 +646,13 @@ h2 { border-radius: 2rem; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); } - +.team-heading{ + margin-top: 200px; + margin-bottom: -20px; +} .Heading-Page { + margin-top: 60px; + margin-bottom: 20px; color: #16538f; }