-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (148 loc) · 6.54 KB
/
index.html
File metadata and controls
158 lines (148 loc) · 6.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paralisi | Software Developer</title>
<!-- Fonts -->
<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">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<a href="#" class="logo">paralisi<span>.dev</span></a>
<div class="nav-links">
<a href="#about" class="nav-link">About</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
<a href="https://github.com/paralisieth" target="_blank" class="nav-link github">
<i class="fab fa-github"></i>
</a>
</div>
<button class="menu-btn">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1 class="glitch" data-text="Hello, I'm Paralisi">Hello, I'm Paralisi</h1>
<p class="lead">I build things for the web and create developer tools.</p>
<div class="cta-buttons">
<a href="#projects" class="btn btn-primary">View My Work</a>
<a href="#contact" class="btn btn-outline">Get In Touch</a>
</div>
</div>
</div>
<div class="hero-background">
<div class="grid"></div>
</div>
</section>
<!-- About 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>I'm a software developer specializing in building exceptional digital experiences. Currently, I'm focused on creating accessible, human-centered products.</p>
<p>My recent project, the GitHub Topics Updater, showcases my passion for creating tools that enhance developer productivity.</p>
<div class="skills">
<h3>Technologies I work with:</h3>
<ul class="skills-list">
<li>Python</li>
<li>JavaScript</li>
<li>HTML & CSS</li>
<li>Git</li>
<li>GitHub API</li>
<li>React</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid">
<!-- GitHub Topics Updater -->
<article class="project-card">
<div class="project-content">
<div class="project-header">
<i class="far fa-folder"></i>
<div class="project-links">
<a href="https://github.com/paralisieth/topic-updater" target="_blank" title="View Source">
<i class="fab fa-github"></i>
</a>
<a href="https://github.com/paralisieth/topic-updater#readme" target="_blank" title="Learn More">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<h3 class="project-title">GitHub Topics Updater</h3>
<p class="project-description">A GUI application for managing GitHub repository topics with real-time search and custom topic support.</p>
<ul class="project-tech-list">
<li>Python</li>
<li>PyQt</li>
<li>GitHub API</li>
</ul>
</div>
</article>
<!-- Add more project cards here -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<p>Whether you have a question or just want to say hi, I'll try my best to get back to you!</p>
<div class="contact-links">
<a href="mailto:paralisieth@gmail.com" class="contact-link">
<i class="fas fa-envelope"></i>
paralisieth@gmail.com
</a>
<a href="https://github.com/paralisieth" target="_blank" class="contact-link">
<i class="fab fa-github"></i>
github.com/paralisieth
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>Designed & Built by Paralisi</p>
<div class="social-links">
<a href="https://github.com/paralisieth" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollToPlugin.min.js"></script>
<script>
// Initialize GSAP plugins immediately
gsap.registerPlugin(ScrollTrigger, ScrollToPlugin);
</script>
<script src="js/main.js"></script>
</body>
</html>