Skip to content

Commit e8c1228

Browse files
authored
Merge pull request #1 from jcomte23/develop
Initial Setup: Added Metadata and Base HTML Structure
2 parents 8a30103 + 92da73d commit e8c1228

File tree

9 files changed

+593
-140
lines changed

9 files changed

+593
-140
lines changed

index.html

Lines changed: 83 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,86 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite App</title>
8-
</head>
9-
<body>
10-
<div id="app"></div>
11-
<script type="module" src="/src/main.js"></script>
12-
</body>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<meta name="description"
9+
content="Portfolio of Javier Cómbita Téllez, a skilled Backend Developer specializing in .NET, C#, Laravel, and scalable architecture design. Explore my projects, team leadership experience, and technical e-learning content.">
10+
<meta name="keywords"
11+
content=".NET Developer, C# Developer, Laravel Developer, Python Developer, Backend Developer, Software Architecture, Team Leader, E-learning, SQL, NoSQL">
12+
<meta name="author" content="Javier Cómbita Téllez">
13+
<meta name="sitedomain" content="https://jcomte23.github.io">
14+
<meta name="organization" content="Jcomtec">
15+
<meta name="author" content="Javier Cómbita Téllez">
16+
<meta name="designer" content="Javier Cómbita Téllez">
17+
<meta name="copyright" content="© 2025 Jcomte23. All rights reserved">
18+
<meta name="robots" content="index,follow">
19+
<meta name="googlebot" content="index,follow">
20+
<meta name="revisit-after" content="15days">
21+
<meta http-equiv="Content-Language" content="en">
22+
<meta property="og:title" content="Jcomte23 - Backend Developer Portfolio">
23+
<meta property="og:description" content="Portfolio of Javier Cómbita Téllez, a skilled Backend Developer specializing in .NET, C#, Laravel, and scalable architecture design.">
24+
<meta property="og:image" content="https://jcomte23.github.io/assets/preview.png">
25+
<meta property="og:url" content="https://jcomte23.github.io">
26+
<meta property="og:type" content="website">
27+
<meta name="twitter:card" content="summary_large_image">
28+
<meta name="twitter:title" content="Jcomte23 - Backend Developer Portfolio">
29+
<meta name="twitter:description" content="Portfolio of Javier Cómbita Téllez, a skilled Backend Developer specializing in .NET, C#, Laravel, and scalable architecture design.">
30+
<meta name="twitter:image" content="https://jcomte23.github.io/assets/preview.png">
31+
<meta name="theme-color" content="#4CAF50">
32+
<title>Jcomte23 - Backend Developer Portfolio</title>
33+
</head>
34+
<body>
35+
<!-- Header Section -->
36+
<header class="bg-dark text-white py-3">
37+
<div class="container d-flex justify-content-between align-items-center">
38+
<h1 class="h3 m-0">Jcomte23</h1>
39+
<nav>
40+
<ul class="nav">
41+
<li class="nav-item"><a href="#about" class="nav-link text-white">About</a></li>
42+
<li class="nav-item"><a href="#projects" class="nav-link text-white">Projects</a></li>
43+
<li class="nav-item"><a href="#contact" class="nav-link text-white">Contact</a></li>
44+
</ul>
45+
</nav>
46+
</div>
47+
</header>
48+
49+
<!-- Main Content -->
50+
<main class="container my-5">
51+
<!-- About Section -->
52+
<section id="about" class="py-5">
53+
<h2>About Me</h2>
54+
<p>
55+
Hi, I'm Javier Cómbita Téllez, a passionate backend developer specializing in .NET, C#, and scalable architectures.
56+
I have experience in leading development teams, mentoring junior talent, and creating technical e-learning content.
57+
</p>
58+
</section>
59+
60+
<!-- Projects Section -->
61+
<section id="projects" class="py-5">
62+
<h2>Projects</h2>
63+
<p>Here are some of the projects I’ve worked on:</p>
64+
<ul>
65+
<li>Project 1: Scalable API built with .NET and SQL Server.</li>
66+
<li>Project 2: Laravel-based web application for e-commerce.</li>
67+
<li>Project 3: Python script for data analysis and automation.</li>
68+
</ul>
69+
</section>
70+
</main>
71+
72+
<!-- Footer Section -->
73+
<footer class="bg-dark text-white py-4">
74+
<div class="container text-center">
75+
<p>© 2025 Javier Cómbita Téllez. All rights reserved.</p>
76+
<p>
77+
Connect with me on:
78+
<a href="https://www.linkedin.com/in/jcomte23" class="text-white text-decoration-none">LinkedIn</a> |
79+
<a href="https://github.com/jcomte23" class="text-white text-decoration-none">GitHub</a>
80+
</p>
81+
</div>
82+
</footer>
83+
84+
<script type="module" src="/src/js/main.js"></script>
85+
</body>
1386
</html>

0 commit comments

Comments
 (0)