-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.74 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.74 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
---
layout: default
title: Home
---
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>Robotics Engineering Portfolio</h1>
<p>A showcase of my robotics projects, skills, and experiences</p>
<a href="{{ '/projects' | relative_url }}" class="btn btn-primary">View Projects</a>
</div>
</div>
</section>
<section class="featured-projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid">
{% assign featured_projects = site.projects | where: "featured", true | limit: 3 %}
{% for project in featured_projects %}
<div class="project-card">
<div class="project-image">
<img src="{{ project.image | relative_url }}" alt="{{ project.title }}">
</div>
<div class="project-info">
<h3 class="project-title">{{ project.title }}</h3>
<p class="project-excerpt">{{ project.excerpt }}</p>
<a href="{{ project.url | relative_url }}" class="btn btn-secondary">View Project</a>
</div>
</div>
{% endfor %}
</div>
<div class="view-all">
<a href="{{ '/projects' | relative_url }}" class="btn btn-outline">View All Projects</a>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="about-content">
<h2 class="section-title">About Me</h2>
<p>I am a passionate robotics engineer with expertise in designing, building, and programming robots. My work spans across various domains including industrial automation, autonomous systems, and human-robot interaction.</p>
<a href="{{ '/about' | relative_url }}" class="btn btn-outline">Learn More</a>
</div>
</div>
</section>