Spaces:
Sleeping
Sleeping
File size: 5,160 Bytes
8bfe920 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | {% extends "base.html" %}
{% block title %}Codingo - AI-Powered Recruitment Platform{% endblock %}
{% block page_class %}landing{% endblock %}
{% block hero %}
<section class="hero">
<div class="container">
<div class="hero-content hero-split">
<div class="hero-copy">
<span class="eyebrow"><span class="dot"></span> AI-Powered Recruitment</span>
<h1>Meet <span class="grad-text">LUNA</span>, your AI recruiter</h1>
<p>She screens CVs, runs real voice interviews, and scores every answer against a live question
database β so you find the right technical talent faster, and fairer.</p>
<div class="hero-buttons">
<a href="{{ url_for('jobs') }}" class="btn btn-primary">Find Jobs</a>
<a href="https://www.youtube.com/watch?v=P6HG27fsJgU" class="btn btn-outline">βΆ Watch Demo</a>
</div>
</div>
<div class="hero-stage">
<div class="luna-avatar-container">
<div class="luna-glow"></div>
<div class="luna-avatar">
<img src="{{ url_for('static', filename='images/LUNA.png') }}" alt="LUNA β your AI recruiter">
</div>
</div>
<span class="float-chip tl"><span class="ico">ποΈ</span> Live voice interview</span>
<span class="float-chip br"><span class="ico">β‘</span> Scored instantly</span>
</div>
</div>
</div>
</section>
{% endblock %}
{% block content %}
<section class="content-section" id="features">
<div class="section-title">
<h2>Platform Features</h2>
<p>Codingo streamlines every step of your technical hiring process with cutting-edge AI technology</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<span>π€</span>
</div>
<div class="feature-content">
<h3>AI CV Analysis</h3>
<p>LUNA automatically analyzes resumes, matching candidates to job requirements with precision and
eliminating unconscious bias.</p>
</div>
</div>
<div class="feature-card">
<div class="feature-icon">
<span>π―</span>
</div>
<div class="feature-content">
<h3>Smart Shortlisting</h3>
<p>Our 70% skill match threshold ensures you only interview candidates who meet your technical
requirements.</p>
</div>
</div>
<div class="feature-card">
<div class="feature-icon">
<span>π₯οΈ</span>
</div>
<div class="feature-content">
<h3>AI-Led Interviews</h3>
<p>Structured interview sessions assess soft skills, technical knowledge, and coding abilities with
real-time monitoring.</p>
</div>
</div>
</div>
</section>
<section class="pipeline" id="how">
<div class="section-title">
<h2>How Codingo Works</h2>
<p>From job post to ranked shortlist β one intelligent, automated pipeline powered by LUNA.</p>
</div>
<div class="pipe-track">
<div class="pipe-step">
<div class="pipe-node">π</div>
<span class="pipe-num">Step 1</span>
<h4>Post a Job</h4>
<p>Recruiters define the role, skills, and how many questions the interview should cover.</p>
</div>
<div class="pipe-step">
<div class="pipe-node">π</div>
<span class="pipe-num">Step 2</span>
<h4>Apply & Parse CV</h4>
<p>Candidates upload a resume β Codingo auto-extracts skills, education, and experience.</p>
</div>
<div class="pipe-step">
<div class="pipe-node">ποΈ</div>
<span class="pipe-num">Step 3</span>
<h4>LUNA Interviews</h4>
<p>LUNA conducts a real voice interview, asking role-specific questions and follow-ups.</p>
</div>
<div class="pipe-step">
<div class="pipe-node">π§ </div>
<span class="pipe-num">Step 4</span>
<h4>Score from the Database</h4>
<p>Every answer is evaluated against a live question bank of thousands of Q&A pairs.</p>
</div>
<div class="pipe-step">
<div class="pipe-node">π</div>
<span class="pipe-num">Step 5</span>
<h4>Rank Candidates</h4>
<p>The recruiter dashboard ranks applicants by skill match and interview performance.</p>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<h2>Ready to Transform Your Technical Hiring?</h2>
<p>Join hundreds of companies finding their perfect tech talent faster and more efficiently with Codingo.</p>
<a href="{{ url_for('jobs') }}" class="btn btn-primary">Browse Available Jobs</a>
</div>
</section>
{% endblock %}
|