-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
184 lines (174 loc) · 8.18 KB
/
index.html
File metadata and controls
184 lines (174 loc) · 8.18 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
---
layout: default
title: Home
description: "Comprehensive collection of HR AI products and research, organized from 1990s ATS to 2024+ agentic AI platforms."
---
<div class="page-header">
<h1 class="page-title">HireAI</h1>
<p class="page-description">Comprehensive Collection of HR AI Products and Solutions. From 1990s ATS to 2024+ Agentic AI Platforms.</p>
</div>
<div class="stats-row">
{% assign product_count = 0 %}
{% for category in site.data.products %}
{% assign product_count = product_count | plus: category.products.size %}
{% endfor %}
<div class="stat-item">
<span class="stat-value">{{ product_count }}</span>
<span class="stat-label">HR AI Products</span>
</div>
<div class="stat-item">
<span class="stat-value">{{ site.data.products.size }}</span>
<span class="stat-label">Technology Eras</span>
</div>
<div class="stat-item">
<span class="stat-value">30+</span>
<span class="stat-label">Years of Evolution</span>
</div>
</div>
<div class="btn-group">
<a href="{{ site.baseurl }}/hr-ai-evolution-comprehensive-analysis/" class="btn btn-primary">Read Research</a>
<a href="https://genedai.me/" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">GeneDai.me</a>
<a href="https://github.com/Digidai/HireAI" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub
</a>
</div>
<div class="divider"></div>
<section class="section">
<div class="section-header">
<span class="section-icon">*</span>
<h2 class="section-title">Featured Research</h2>
</div>
<div class="featured-grid">
{% for category in site.data.products %}
{% for product in category.products %}
{% if product.featured %}
<div class="featured-card">
<h3><a href="{{ site.baseurl }}/{{ product.analysis | replace: '_analyses/', '' | replace: '.md', '' }}/">{{ product.name | escape }}</a></h3>
<p>{{ product.description | escape }}</p>
<a href="{{ site.baseurl }}/{{ product.analysis | replace: '_analyses/', '' | replace: '.md', '' }}/" class="btn btn-outline">Read Analysis</a>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</section>
<section class="section">
<div class="section-header">
<span class="section-icon">#</span>
<h2 class="section-title">Product Categories</h2>
</div>
{% for category in site.data.products %}
<div class="category-section" id="{{ category.era | slugify }}">
<div class="category-header">
<span class="category-icon">{{ category.icon }}</span>
<h3 class="category-title">{{ category.era | split: ' - ' | last }}</h3>
<span class="category-era">{{ category.era | split: ' - ' | first }}</span>
</div>
<ul class="product-list">
{% for product in category.products %}
<li class="product-item">
<span class="product-bullet"></span>
<div class="product-content">
<div class="product-name">
<a href="{{ product.url | escape }}" target="_blank" rel="noopener noreferrer">{{ product.name | escape }}</a>
</div>
<p class="product-desc">{{ product.description | escape }}</p>
<div class="product-actions">
<a href="{{ product.url | escape }}" class="product-link" target="_blank" rel="noopener noreferrer">
Visit Website
</a>
{% if product.analysis %}
<a href="{{ site.baseurl }}/{{ product.analysis | replace: '_analyses/', '' | replace: '.md', '' }}/" class="product-link">
Read Analysis
</a>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</section>
<section class="section">
<div class="section-header">
<span class="section-icon">@</span>
<h2 class="section-title">All Products</h2>
</div>
<div class="database">
<div class="database-header">
<span class="database-title">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="3" y1="9" x2="21" y2="9"></line>
<line x1="9" y1="21" x2="9" y2="9"></line>
</svg>
Product Database
</span>
<div class="database-controls">
<input type="text" class="search-input" id="product-search" placeholder="Search products...">
</div>
</div>
<table class="database-table" id="product-table">
<thead>
<tr>
<th>Name</th>
<th>Era</th>
<th>Analysis</th>
</tr>
</thead>
<tbody>
{% for category in site.data.products %}
{% for product in category.products %}
<tr>
<td><a href="{{ product.url | escape }}" target="_blank" rel="noopener noreferrer">{{ product.name | escape }}</a></td>
<td>{{ category.era | split: ' - ' | first }}</td>
<td>
{% if product.analysis %}
<a href="{{ site.baseurl }}/{{ product.analysis | replace: '_analyses/', '' | replace: '.md', '' }}/">Read</a>
{% else %}
<span style="color: var(--text-tertiary);">-</span>
{% endif %}
</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>
</section>
<section class="section">
<div class="section-header">
<span class="section-icon">&</span>
<h2 class="section-title">Browse by Tag</h2>
</div>
<div class="tag-cloud">
{% assign all_tags = "" | split: "" %}
{% for category in site.data.products %}
{% for product in category.products %}
{% for tag in product.tags %}
{% assign all_tags = all_tags | push: tag %}
{% endfor %}
{% endfor %}
{% endfor %}
{% assign unique_tags = all_tags | uniq | sort %}
{% for tag in unique_tags %}
<a href="{{ site.baseurl }}/tags/{{ tag | slugify }}/" class="tag">{{ tag | escape }}</a>
{% endfor %}
</div>
</section>
<section class="section">
<div class="section-header">
<span class="section-icon">></span>
<h2 class="section-title">Quick Access</h2>
</div>
<div class="quick-links">
<a href="{{ site.baseurl }}/product-directory/" class="btn btn-secondary">Complete Product Directory</a>
<a href="{{ site.baseurl }}/FAQ/" class="btn btn-secondary">Frequently Asked Questions</a>
</div>
</section>
<div class="page-footer">
<p>2024 HireAI Contributors. Licensed under MIT License.</p>
<p>Powered by AI | Data-Driven | Open Source</p>
</div>