Initial commit: AI Recruitment Site for Ryans Recruit Firm
- Complete PostgreSQL schema with migrations - Node.js/Express backend with authentication - Public website (home, about, services, jobs, apply, contact) - Admin dashboard with applicant and job management - CV upload and storage in PostgreSQL BYTEA - Docker Compose setup for deployment - Session-based authentication - Responsive design with Ryan brand colors
This commit is contained in:
177
public/about.html
Normal file
177
public/about.html
Normal file
@@ -0,0 +1,177 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>About Us - Ryans Recruit Firm</title>
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="container">
|
||||
<div class="logo">Ryans Recruit Firm</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/about.html" class="active">About</a></li>
|
||||
<li><a href="/services.html">Services</a></li>
|
||||
<li><a href="/jobs.html">Jobs</a></li>
|
||||
<li><a href="/contact.html">Contact</a></li>
|
||||
<li><a href="/admin/login.html" class="btn btn-primary btn-sm">Admin</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>About Ryans Recruit Firm</h1>
|
||||
<p>Building careers and companies through exceptional talent placement</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<div class="container-narrow">
|
||||
<h2>Our Story</h2>
|
||||
<p>Founded in 2015, Ryans Recruit Firm has grown to become one of the most trusted names in professional recruitment. What started as a small team with a vision has evolved into a comprehensive recruitment solution serving clients across multiple industries worldwide.</p>
|
||||
|
||||
<p>Our founder, Ryan Martinez, saw a gap in the recruitment industry: too many firms focused on filling positions quickly rather than finding the right match. With a background in HR and a passion for helping people find meaningful work, Ryan set out to create a different kind of recruitment firm—one that prioritizes quality, transparency, and long-term success.</p>
|
||||
|
||||
<p>Today, we're proud to have helped thousands of professionals find their dream jobs and assisted hundreds of companies in building exceptional teams.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section style="background: var(--bg-white);">
|
||||
<div class="container">
|
||||
<div class="section-title">
|
||||
<h2>Our Values</h2>
|
||||
<p>The principles that guide everything we do</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-2">
|
||||
<div class="card">
|
||||
<h3>🎯 Excellence</h3>
|
||||
<p>We maintain the highest standards in candidate screening, client service, and professional conduct. Mediocrity is not in our vocabulary.</p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>🤝 Integrity</h3>
|
||||
<p>Honesty and transparency in all our dealings. We build trust through consistent, ethical behavior and open communication.</p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>💡 Innovation</h3>
|
||||
<p>We leverage the latest technology and methodologies to improve our recruitment process and deliver better results.</p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>❤️ Empathy</h3>
|
||||
<p>We understand that behind every resume is a person with dreams, and behind every job posting is a company with needs. We care about both.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="section-title">
|
||||
<h2>By the Numbers</h2>
|
||||
<p>Our track record speaks for itself</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-4">
|
||||
<div class="stat-card">
|
||||
<div class="stat-value">5,000+</div>
|
||||
<div class="stat-label">Successful Placements</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-value">500+</div>
|
||||
<div class="stat-label">Partner Companies</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-value">95%</div>
|
||||
<div class="stat-label">Client Satisfaction</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-value">14</div>
|
||||
<div class="stat-label">Average Days to Placement</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section style="background: var(--bg-white);">
|
||||
<div class="container-narrow">
|
||||
<div class="section-title">
|
||||
<h2>Our Mission</h2>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<p style="font-size: 1.125rem; line-height: 1.8; color: var(--text-dark); text-align: center;">
|
||||
To revolutionize the recruitment industry by creating meaningful connections between talented professionals and forward-thinking companies, while maintaining the highest standards of integrity, transparency, and service excellence.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<div class="container text-center">
|
||||
<h2 style="margin-bottom: 1rem;">Ready to Work With Us?</h2>
|
||||
<p style="font-size: 1.125rem; color: var(--text-light); margin-bottom: 2rem;">
|
||||
Whether you're looking for your next career move or seeking top talent for your company
|
||||
</p>
|
||||
<div style="display: flex; gap: 1rem; justify-content: center;">
|
||||
<a href="/jobs.html" class="btn btn-primary btn-lg">Browse Jobs</a>
|
||||
<a href="/contact.html" class="btn btn-secondary btn-lg">Contact Us</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-section">
|
||||
<h3>Ryans Recruit Firm</h3>
|
||||
<p style="color: rgba(255, 255, 255, 0.8);">
|
||||
Your trusted partner in career advancement and talent acquisition.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="footer-section">
|
||||
<h3>Quick Links</h3>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/about.html">About Us</a></li>
|
||||
<li><a href="/services.html">Services</a></li>
|
||||
<li><a href="/jobs.html">Job Listings</a></li>
|
||||
<li><a href="/contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="footer-section">
|
||||
<h3>For Employers</h3>
|
||||
<ul>
|
||||
<li><a href="/contact.html">Post a Job</a></li>
|
||||
<li><a href="/contact.html">Our Process</a></li>
|
||||
<li><a href="/contact.html">Pricing</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="footer-section">
|
||||
<h3>Contact</h3>
|
||||
<ul>
|
||||
<li>Email: info@ryansrecruit.com</li>
|
||||
<li>Phone: +1 (555) 123-4567</li>
|
||||
<li>Hours: Mon-Fri 9AM-6PM EST</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 Ryans Recruit Firm. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user