forked from Huxpro/huxpro.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (138 loc) · 4.48 KB
/
index.html
File metadata and controls
148 lines (138 loc) · 4.48 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
---
layout: default
title: Home
---
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<span class="hero-tag">Agent Developer</span>
<h1 class="hero-title">
Building the<br>
<span class="accent-gradient">Next Wave</span> of AI Agents
</h1>
<p class="hero-subtitle">
I ship multi-agent systems and AI-driven MVPs from idea to production.
</p>
<div class="hero-stats">
<a href="https://github.com/calderbuild" class="tag" target="_blank" rel="noopener">1.6k+ Stars</a>
<a href="/projects/" class="tag">4+ Hackathon Wins</a>
<a href="https://github.com/datawhalechina" class="tag" target="_blank" rel="noopener">Datawhale Contributor</a>
</div>
<div class="hero-cta">
<a href="/projects/" class="btn btn-primary">View Projects</a>
<a href="mailto:johnrobertdestiny@gmail.com" class="btn">Get in Touch</a>
</div>
</div>
<div class="terminal-block" aria-hidden="true">
<div class="terminal-line">
<span>agent.status</span>
<span class="terminal-val--active">ONLINE</span>
</div>
<div class="terminal-line">
<span>active_projects</span>
<span>4</span>
</div>
<div class="terminal-line terminal-cursor">
<span>next_build</span>
<span class="terminal-val--cyan">initializing...</span>
</div>
</div>
</div>
</section>
<!-- Featured Projects -->
<section class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Featured Projects</h2>
<a href="/projects/" class="btn">View All</a>
</div>
<div class="post-grid">
{% for project in site.data.projects limit:3 %}
{% if project.url %}
<article class="post-card">
<div class="project-header">
<h3 class="post-title"><a href="{{ project.url }}" target="_blank" rel="noopener">{{ project.name }}</a></h3>
{% if project.stars %}
<span class="post-meta" style="color: var(--accent-yellow)">{{ project.stars }} stars</span>
{% endif %}
</div>
<p class="post-excerpt">{{ project.tagline }}</p>
<div class="post-tags">
{% for t in project.tech %}
<span class="tag">{{ t }}</span>
{% endfor %}
</div>
</article>
{% endif %}
{% endfor %}
</div>
</div>
</section>
<!-- Latest Posts -->
<section class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Latest Posts</h2>
<a href="/archive/" class="btn">View All</a>
</div>
<div class="post-grid">
{% for post in site.posts limit:3 %}
<article class="post-card">
<div class="post-meta">{{ post.date | date: "%b %d, %Y" }}</div>
<h3 class="post-title">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</h3>
{% if post.subtitle %}
<p class="post-excerpt">{{ post.subtitle | truncate: 120 }}</p>
{% elsif post.description %}
<p class="post-excerpt">{{ post.description | truncate: 120 }}</p>
{% endif %}
{% if post.tags.size > 0 %}
<div class="post-tags">
{% for tag in post.tags limit:3 %}
<a href="/tags/{{ tag | slugify }}/" class="tag">{{ tag }}</a>
{% endfor %}
</div>
{% endif %}
</article>
{% endfor %}
</div>
</div>
</section>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfilePage",
"mainEntity": {
"@type": "Person",
"name": "Calder",
"alternateName": "Lin Luo",
"url": "https://calderbuild.github.io",
"sameAs": [
"https://github.com/calderbuild",
"https://x.com/CalderBuild"
],
"jobTitle": "Agent Developer",
"knowsAbout": ["Multi-Agent Systems", "AI Agents", "Prompt Engineering", "RAG"]
}
}
</script>
<style>
.hero .container {
display: grid;
grid-template-columns: 3fr 2fr;
align-items: center;
gap: var(--space-2xl);
}
.hero-stats {
display: flex;
flex-wrap: wrap;
gap: var(--space-sm);
margin-bottom: var(--space-xl);
}
@media (max-width: 768px) {
.hero .container { grid-template-columns: 1fr; }
.terminal-block { display: none; }
}
</style>