forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
245 lines (234 loc) · 11.6 KB
/
index.html
File metadata and controls
245 lines (234 loc) · 11.6 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Developer Portfolio</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<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">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="#home">Your Name</a>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#papers">Paper Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="mobile-menu-btn">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<h1>AI Researcher & Developer</h1>
<p>Building intelligent systems and sharing knowledge through thorough paper reviews</p>
<div class="buttons">
<a href="#projects" class="btn primary">View My Work</a>
<a href="#papers" class="btn secondary">Read Paper Reviews</a>
</div>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p>Hello! I'm an AI developer and researcher passionate about [your specific interests in AI]. My work focuses on [your area of expertise].</p>
<p>With experience in [relevant technologies, frameworks, etc.], I enjoy tackling complex problems and sharing knowledge with the AI community.</p>
<div class="skills">
<h3>Skills & Technologies</h3>
<div class="skill-tags">
<span>Machine Learning</span>
<span>Deep Learning</span>
<span>Computer Vision</span>
<span>NLP</span>
<span>TensorFlow</span>
<span>PyTorch</span>
<span>Python</span>
<!-- Add or modify skill tags as needed -->
</div>
</div>
</div>
<div class="about-image">
<!-- Replace with your profile image -->
<img src="https://via.placeholder.com/400" alt="Profile picture">
</div>
</div>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">Projects</h2>
<div class="projects-grid">
<!-- Project 1 -->
<div class="project-card">
<div class="project-media">
<!-- You can replace this with a GIF or add a video element -->
<img src="https://via.placeholder.com/600x400" alt="Project 1">
</div>
<div class="project-info">
<h3>Project Title 1</h3>
<p>Description of your AI project. Explain the problem it solves, technologies used, and your role in it.</p>
<div class="project-tags">
<span>Deep Learning</span>
<span>Computer Vision</span>
</div>
<div class="project-links">
<a href="#" class="btn small">View Details</a>
<a href="#" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card">
<div class="project-media">
<!-- Example of video embed -->
<video controls>
<source src="path/to/your/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="project-info">
<h3>Project Title 2</h3>
<p>Description of your AI project. Explain the problem it solves, technologies used, and your role in it.</p>
<div class="project-tags">
<span>NLP</span>
<span>Transformers</span>
</div>
<div class="project-links">
<a href="#" class="btn small">View Details</a>
<a href="#" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card">
<div class="project-media">
<!-- Example of GIF -->
<img src="path/to/your/animation.gif" alt="Project 3 Demo">
</div>
<div class="project-info">
<h3>Project Title 3</h3>
<p>Description of your AI project. Explain the problem it solves, technologies used, and your role in it.</p>
<div class="project-tags">
<span>Reinforcement Learning</span>
<span>Simulation</span>
</div>
<div class="project-links">
<a href="#" class="btn small">View Details</a>
<a href="#" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="papers" class="papers">
<div class="container">
<h2 class="section-title">Paper Reviews</h2>
<div class="paper-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="cv">Computer Vision</button>
<button class="filter-btn" data-filter="nlp">NLP</button>
<button class="filter-btn" data-filter="rl">Reinforcement Learning</button>
<!-- Add more filter buttons as needed -->
</div>
<div class="papers-grid">
<!-- Paper Review 1 -->
<div class="paper-card" data-category="cv">
<div class="paper-info">
<h3>Paper Title 1</h3>
<p class="paper-authors">Authors: Name 1, Name 2, et al.</p>
<p class="paper-conference">Conference/Journal: CVPR 2023</p>
<p class="paper-summary">Brief summary of the paper and your insights on it.</p>
<div class="paper-tags">
<span>Computer Vision</span>
<span>Object Detection</span>
</div>
</div>
<div class="paper-links">
<a href="#" class="btn small">Read Full Review</a>
<a href="#" target="_blank" class="original-paper">Original Paper <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<!-- Paper Review 2 -->
<div class="paper-card" data-category="nlp">
<div class="paper-info">
<h3>Paper Title 2</h3>
<p class="paper-authors">Authors: Name 1, Name 2, et al.</p>
<p class="paper-conference">Conference/Journal: ACL 2023</p>
<p class="paper-summary">Brief summary of the paper and your insights on it.</p>
<div class="paper-tags">
<span>NLP</span>
<span>Transformers</span>
</div>
</div>
<div class="paper-links">
<a href="#" class="btn small">Read Full Review</a>
<a href="#" target="_blank" class="original-paper">Original Paper <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<!-- Paper Review 3 -->
<div class="paper-card" data-category="rl">
<div class="paper-info">
<h3>Paper Title 3</h3>
<p class="paper-authors">Authors: Name 1, Name 2, et al.</p>
<p class="paper-conference">Conference/Journal: ICML 2023</p>
<p class="paper-summary">Brief summary of the paper and your insights on it.</p>
<div class="paper-tags">
<span>Reinforcement Learning</span>
<span>Game Theory</span>
</div>
</div>
<div class="paper-links">
<a href="paper-review-template.html?id=example-paper" class="btn small">Read Full Review</a>
<a href="no-cdn-paper-review.html?id=example-paper" class="btn small">Simple View</a>
<a href="#" target="_blank" class="original-paper">Original Paper <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
<div class="load-more">
<button class="btn secondary">Load More Papers</button>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<p>Interested in collaborating or have questions about my work? Feel free to reach out!</p>
<div class="contact-links">
<a href="mailto:your.email@example.com"><i class="fas fa-envelope"></i> your.email@example.com</a>
<a href="https://github.com/yourusername" target="_blank"><i class="fab fa-github"></i> GitHub</a>
<a href="https://linkedin.com/in/yourusername" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="https://twitter.com/yourusername" target="_blank"><i class="fab fa-twitter"></i> Twitter</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© <span id="year">2024</span> Your Name. All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>