-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (144 loc) · 6.66 KB
/
index.html
File metadata and controls
152 lines (144 loc) · 6.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rey Arby Castro - Aspiring Software Engineer</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body class="dark-mode">
<main class="main_container">
<section class="profile">
<div class="profile-image">
<img src="./public/my_pic.PNG" alt="Profile Picture">
</div>
<div class="profile-info">
<h1>Rey Arby Castro</h1>
<p class="title">Junior Software Developer</p>
<p class="location"><i class="fas fa-map-marker-alt"></i> Pandi, Bulacan, Philippines</p>
<div class="social-links">
<a href="mailto:castro.reyarby@gmail.com" class="social-link" title="Email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://github.com/reyqueuetie" class="social-link" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/rey-arby-castro-4838b7354/" class="social-link" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="social-link" title="Facebook">
<i class="fab fa-facebook"></i>
</a>
<a href="https://www.instagram.com/_reycstr/" class="social-link" title="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="social-link" title="Telegram">
<i class="fab fa-telegram"></i>
</a>
</div>
</div>
<div class="theme-switch">
<label class="switch">
<input type="checkbox" id="theme-toggle">
<span class="slider round"></span>
</label>
</div>
</section>
<section class="about card">
<h2><i class="fas fa-user"></i> Profile</h2>
<p>Driven by a strong interest in web development, I am an aspiring web developer intern focused on building engaging and practical digital solutions. With an eagerness to learn new technologies and expand my skills, I am ready to contribute meaningfully to innovative development environments.</p>
</section>
<section class="recent-projects card">
<h2><i class="fas fa-project-diagram"></i> Projects</h2>
<div class="projects-grid">
<div class="project">
<h3>INFINITY - E-Commerce Shoe Store</h3>
<ul>
<li>Developed using PHP for backend functionality</li>
<li>Built frontend with HTML and CSS, MySQL for data management</li>
<li>Includes product store, user auth, shopping cart, checkout system</li>
<li>Implemented secure admin authentication JWT</li>
<li>Designed UI/UX in Figma</li>
</ul>
</div>
<div class="project">
<h3>Communique - A Thread App</h3>
<ul>
<li>Full-featured platform with REST API backend and SPA frontend</li>
<li>Built with JavaScript, HTML, and CSS</li>
<li>Implemented user auth, posts, comments, and real-time updates</li>
<li>JWT</li>
</ul>
</div>
<div class="project">
<h3>Takarakuji - Minute-lotto App</h3>
<ul>
<li>Developed backend with JavaScript (ES6+)</li>
<li>Built SPA frontend with ReactJS and Tailwind CSS</li>
<li>Implemented WebSockets for real-time updates</li>
<li>JWT</li>
<li>Designed UI/UX in Figma</li>
</ul>
</div>
</div>
</section>
<section class="education card">
<h2><i class="fas fa-graduation-cap"></i> Education</h2>
<div class="education-item">
<h3>B.S. Computer Science</h3>
<p>College of Mary Immaculate</p>
<span class="year">2020 - 2026</span>
<p class="location"><i class="fas fa-map-marker-alt"></i> Poblacion, Pandi Bulacan</p>
</div>
</section>
<section class="tech-stack card">
<h2><i class="fas fa-code"></i> Skills</h2>
<div class="stack-container">
<div class="stack-group">
<h3>Programming</h3>
<div class="tags">
<span class="tag">Python</span>
<span class="tag">JavaScript</span>
<span class="tag">PHP</span>
</div>
</div>
<div class="stack-group">
<h3>Web Development</h3>
<div class="tags">
<span class="tag">HTML/CSS</span>
<span class="tag">React</span>
<span class="tag">REST APIs</span>
</div>
</div>
<div class="stack-group">
<h3>Tools</h3>
<div class="tags">
<span class="tag">MySQL</span>
<span class="tag">Git</span>
<span class="tag">Figma</span>
<span class="tag">Virtual Machines</span>
</div>
</div>
</div>
</section>
<section class="reference card">
<h2><i class="fas fa-comment"></i> Reference</h2>
<div class="reference-item">
<h3>Joseph Bernard Reyes</h3>
<p>College of Mary Immaculate</p>
<p><i class="fas fa-phone"></i> +639922346806</p>
</div>
</section>
<footer>
<p>© 2025 Rey Arby Castro. All rights reserved.</p>
<div class="chat-bubble">
<button class="chat-btn">
<i class="fas fa-comment"></i> Chat with Rey
</button>
</div>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>