/ codersaidfund / src / components / Project.js
Project.js
 1  import React from "react";
 2  import "./Project.css";
 3  import ProjectImage from "../images/NFToffice2.jpg"; // Replace with your actual image path
 4  import PitchdeckPDF from "../pdfs/Pitchdeck.pdf"; // Replace with your actual PDF paths
 5  import ShortWhitepaperPDF from "../pdfs/Shortpaper.pdf";
 6  import WhitepaperPDF from "../pdfs/Whitepaper.pdf";
 7  
 8  const Project = () => {
 9    return (
10      <div className="project-container">
11        <div className="project-content">
12          <div className="project-image">
13            <img src={ProjectImage} alt="Project" />
14          </div>
15          <div className="project-text">
16            <h1>Our Project</h1>
17            <p>
18              Discover the groundbreaking initiatives we’re developing to leverage
19              blockchain technology, drive innovation, and empower communities
20              worldwide. Our detailed documentation provides insights into our
21              vision, strategies, and goals.
22            </p>
23            <p>
24              The trend is we are moving to an increased percentage of workers
25              needed in software. We know some people have more opportunities to
26              gain qualified professional skills than others. Coders Aid Fund want
27              to address this problem.
28            </p>
29            <p>
30              We address the inequality and help more people gain access to become
31              coders. We will build a platform that uses crypto to raise funds and
32              blockchain to validate members at charities, foundations and social
33              entrepreneurs. These and its members will generate a donation link
34              to raise funds to pay for certifications and courses. Also
35              fundraisers as affiliates can register and be offered to raise funds
36              and earn from a fee.
37            </p>
38            <p>
39              Our target market is the public and private sectors looking to
40              employ people with a diverse background.
41            </p>
42            <p>
43              Learn to code. Get funded to take courses and certifications to
44              match the demands at work and job market
45            </p>
46            <p>
47              Platform as a Service. Raise crypto funds here. Validate members on
48              the blockchain. Dynamic NFTs to follow members progress. Send DMs,
49              posts, answers.
50            </p>
51            <p>
52              Employment. Gain skills as a software developer to be attractive on
53              the job market. Your job combat the digital divide
54            </p>
55            <div className="project-buttons">
56              <a href={PitchdeckPDF} download className="project-button">
57                Pitchdeck
58              </a>
59              <a href={ShortWhitepaperPDF} download className="project-button">
60                Short Whitepaper
61              </a>
62              <a href={WhitepaperPDF} download className="project-button">
63                Whitepaper
64              </a>
65            </div>
66          </div>
67        </div>
68      </div>
69    );
70  };
71  
72  export default Project;