Initial commit: Staging recruitment venture website
This commit is contained in:
commit
089ea7eb65
8 changed files with 900 additions and 0 deletions
107
index.html
Normal file
107
index.html
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Syntropy Talent - Recruitment & Staffing</title>
|
||||
<meta name="description" content="Professional recruitment and temp agency connecting job seekers with employers">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- ===== Staging Banner ===== -->
|
||||
<div class="staging-banner">
|
||||
⚠️ STAGING SITE — RecruitmentVenture-Staging
|
||||
</div>
|
||||
|
||||
<!-- ===== Header ===== -->
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<h1 class="logo">Syntropy Talent</h1>
|
||||
<nav class="nav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="job-seeker.html">For Job Seekers</a>
|
||||
<a href="employer.html">For Employers</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- ===== Hero Section ===== -->
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>Connecting Talent with Opportunity</h2>
|
||||
<p>Professional recruitment solutions for job seekers and hiring managers alike.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ===== Value Proposition ===== -->
|
||||
<section class="section values">
|
||||
<div class="container">
|
||||
<h3>Why Choose Us?</h3>
|
||||
<div class="values-grid">
|
||||
<div class="value-item">
|
||||
<h4>Professional Network</h4>
|
||||
<p>Access to a curated network of qualified professionals across industries.</p>
|
||||
</div>
|
||||
<div class="value-item">
|
||||
<h4>Streamlined Process</h4>
|
||||
<p>Efficient matching between candidates and opportunities.</p>
|
||||
</div>
|
||||
<div class="value-item">
|
||||
<h4>Expert Support</h4>
|
||||
<p>Dedicated team to guide both job seekers and employers through the process.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ===== How It Works ===== -->
|
||||
<section class="section how-it-works">
|
||||
<div class="container">
|
||||
<h3>How It Works</h3>
|
||||
<div class="steps">
|
||||
<div class="step">
|
||||
<div class="step-number">1</div>
|
||||
<h4>Submit Your Details</h4>
|
||||
<p>Job seekers: Apply through our secure form. Employers: Post your needs.</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<div class="step-number">2</div>
|
||||
<h4>Professional Matching</h4>
|
||||
<p>Our team reviews and matches you with suitable opportunities.</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<div class="step-number">3</div>
|
||||
<h4>Interview & Placement</h4>
|
||||
<p>We facilitate the interview process and support successful placement.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ===== Call to Action ===== -->
|
||||
<section class="section cta">
|
||||
<div class="container">
|
||||
<h2>Ready to Get Started?</h2>
|
||||
<div class="cta-buttons">
|
||||
<a href="job-seeker.html" class="btn btn-primary">I'm a Job Seeker</a>
|
||||
<a href="employer.html" class="btn btn-secondary">I'm Hiring</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ===== Footer ===== -->
|
||||
<footer class="site-footer">
|
||||
<div class="container">
|
||||
<p>© 2026 Syntropy Talent. All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue