-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 2.88 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kristina Camacho | Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 text-gray-800 font-sans">
<!-- Header -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="max-w-6xl mx-auto px-4 py-4 flex justify-between items-center">
<h1 class="text-2xl font-bold text-emerald-600">Kristina Camacho</h1>
<nav class="space-x-4 text-sm md:text-base">
<a href="/templates/projects.html" class="text-gray-700 hover:text-emerald-600">Projects</a>
<a href="#skills" class="text-gray-700 hover:text-emerald-600">Skills</a>
<a href="#contact" class="text-gray-700 hover:text-emerald-600">Contact</a>
</nav>
</div>
</header>
<!-- Hero -->
<section class="py-20 bg-gradient-to-r from-emerald-100 to-emerald-200 text-center">
<img src="images/myavatar.png" alt="Kristina Camacho" class="w-32 h-32 rounded-full mx-auto mb-4 shadow-lg">
<h2 class="text-4xl font-bold mb-4">Hi, I'm Kristina!</h2>
<p class="max-w-xl mx-auto text-lg">Full Stack Developer focused on data analytics, automation, and AI-driven experiences. I build useful, elegant, and meaningful web apps.</p>
</section>
<!-- Skills -->
<section id="skills" class="py-16 bg-white px-4">
<div class="max-w-4xl mx-auto">
<h3 class="text-3xl font-semibold mb-6 text-center">Skills</h3>
<ul class="grid grid-cols-2 sm:grid-cols-3 gap-4 text-center text-gray-700">
<li>HTML / CSS / JavaScript</li>
<li>Python / FastAPI</li>
<li>React / Vue 3</li>
<li>Supabase / Firebase</li>
<li>AI & Automation</li>
<li>Project Management & QA</li>
</ul>
</div>
</section>
<!-- Contact -->
<section id="contact" class="py-16 px-4 bg-emerald-50">
<div class="max-w-2xl mx-auto text-center">
<h3 class="text-3xl font-semibold mb-6">Contact Me</h3>
<div class="flex justify-center space-x-6 mt-6">
<a href="mailto:carter_kristina@proton.me" target="_blank">
<img src="images/icons/mail.png" alt="Email" class="w-8 h-8 hover:scale-110 transition-transform">
</a>
<a href="https://linkedin.com/in/kcamacho1" target="_blank">
<img src="images/icons/linkedin.png" alt="LinkedIn" class="w-8 h-8 hover:scale-110 transition-transform">
</a>
<a href="https://github.com/kcamacho1" target="_blank">
<img src="images/icons/github.png" alt="GitHub" class="w-8 h-8 hover:scale-110 transition-transform">
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-white text-center py-6 text-sm text-gray-500">
© 2025 Kristina Camacho. All rights reserved.
</footer>
</body>
</html>