feat(rename): rename progodyssey to progyssey

This commit is contained in:
ryan 2025-04-23 16:43:31 +03:00
parent ea28e6306d
commit c1bd2aa9b8
2 changed files with 81 additions and 54 deletions

View file

@ -1,6 +1,6 @@
# Progodyssey Traineeship Program # Progyssey Traineeship Program
Welcome to the Progodyssey Traineeship Program! This project serves as the web application for managing applications to the Progodyssey Traineeship Program, where aspiring IT professionals can apply for the program, learn, and grow in the tech industry. Welcome to the Progyssey Traineeship Program! This project serves as the web application for managing applications to the Progyssey Traineeship Program, where aspiring IT professionals can apply for the program, learn, and grow in the tech industry.
## Features ## Features
- **Landing Page**: Introduction to the program and resources for prospective trainees. - **Landing Page**: Introduction to the program and resources for prospective trainees.

View file

@ -1,81 +1,108 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Progodyssey Traineeship Program</title> <title>Progyssey Traineeship Program</title>
<link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="styles.css" />
</head> </head>
<body> <body>
<!-- Header Section --> <!-- Header Section -->
<header> <header>
<div class="logo-container"> <div class="logo-container">
<img src="images/logo.png" alt="TechStep Logo" class="logo"> <img src="images/logo.png" alt="TechStep Logo" class="logo" />
</div> </div>
<div class="container"> <div class="container">
<h1>Welcome to Progodyssey Traineeship</h1> <h1>Welcome to Progyssey Traineeship</h1>
<p>Where Tech Careers Begin</p> <p>Where Tech Careers Begin</p>
<a href="#apply" class="cta-button">Apply Now</a> <a href="#apply" class="cta-button">Apply Now</a>
</div> </div>
</header> </header>
<!-- Program Overview Section --> <!-- Program Overview Section -->
<section id="overview"> <section id="overview">
<div class="container"> <div class="container">
<h2>About the Program</h2> <h2>About the Program</h2>
<p>The Progodyssey Traineeship Program is designed for aspiring IT professionals who want to build a solid foundation in the tech industry. We get to assist you in honing your technical skills for the challenges and opportunities in todays technology landscape.</p> <p>
</div> The Progyssey Traineeship Program is designed for aspiring IT
professionals who want to build a solid foundation in the tech
industry. We get to assist you in honing your technical skills for the
challenges and opportunities in todays technology landscape.
</p>
</div>
</section> </section>
<!-- Curriculum Section --> <!-- Curriculum Section -->
<section id="curriculum"> <section id="curriculum">
<div class="container"> <div class="container">
<h2> Recommended IT courses</h2> <h2>Recommended IT courses</h2>
<ul> <ul>
<li>Missing Semester - Advanced Computer Skills: <a href="https://missing.csail.mit.edu/">https://missing.csail.mit.edu/</a></li> <li>
Missing Semester - Advanced Computer Skills:
<a href="https://missing.csail.mit.edu/"
>https://missing.csail.mit.edu/</a
>
</li>
<li>Programming Overview: <a href="https://pll.harvard.edu/course/cs50-introduction-computer-science">https://pll.harvard.edu/course/cs50-introduction-computer-science</a></li> <li>
Programming Overview:
<a
href="https://pll.harvard.edu/course/cs50-introduction-computer-science"
>https://pll.harvard.edu/course/cs50-introduction-computer-science</a
>
</li>
<li>To dive deeper into a fascinating programming language: <a href="https://learnyouahaskell.github.io/">https://learnyouahaskell.github.io/</a></li> <li>
</ul> To dive deeper into a fascinating programming language:
</div> <a href="https://learnyouahaskell.github.io/"
>https://learnyouahaskell.github.io/</a
>
</li>
</ul>
</div>
</section> </section>
<!-- Testimonials Section --> <!-- Testimonials Section -->
<section id="testimonials"> <section id="testimonials">
<div class="container"> <div class="container">
<h2>What Our Trainees Say</h2> <h2>What Our Trainees Say</h2>
<blockquote> <blockquote>
<p>"Progodyssey Traineeship Program gave me the skills and confidence I needed to start my career in IT. The mentorship and real-world experience were invaluable!"</p> <p>
<cite>— Ryan Mwangi, Software Developer</cite> "Progyssey Traineeship Program gave me the skills and confidence I
</blockquote> needed to start my career in IT. The mentorship and real-world
</div> experience were invaluable!"
</p>
<cite>— Ryan Mwangi, Software Developer</cite>
</blockquote>
</div>
</section> </section>
<!-- Call to Action Section --> <!-- Call to Action Section -->
<section id="apply"> <section id="apply">
<div class="container"> <div class="container">
<h2>Get Started</h2> <h2>Get Started</h2>
<p>Ready to take the next step in your IT career? Apply today!</p> <p>Ready to take the next step in your IT career? Apply today!</p>
<form id="applicationForm"> <form id="applicationForm">
<input type="hidden" name="list_id" value="3"> <input type="hidden" name="list_id" value="3" />
<input type="text" name="name" placeholder="Your Name" required> <input type="text" name="name" placeholder="Your Name" required />
<input type="email" name="email" placeholder="Your Email" required> <input type="email" name="email" placeholder="Your Email" required />
<textarea name="message" placeholder="Why are you interested in this program?" required></textarea> <textarea
<button type="submit" class="cta-button">Submit Application</button> name="message"
</form> placeholder="Why are you interested in this program?"
<div id="responseMessage"></div> required
</div> ></textarea>
<button type="submit" class="cta-button">Submit Application</button>
</form>
<div id="responseMessage"></div>
</div>
</section> </section>
<!-- Footer Section --> <!-- Footer Section -->
<footer> <footer>
<div class="container"> <div class="container">
<p>&copy; 2024 Progodyssey Traineeship Program. All rights reserved.</p> <p>&copy; 2024 Progyssey Traineeship Program. All rights reserved.</p>
</div> </div>
</footer> </footer>
<script src="index.js"></script> <script src="index.js"></script>
</body>
</body>
</html> </html>