-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoftware.html
216 lines (202 loc) · 10.2 KB
/
software.html
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Software | Owen Perry</title>
<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>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<link rel="shortcut icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="n0va.tech" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="nav-container">
<div class="nav-logo">OP</div>
<button class="mobile-menu-btn" aria-label="Toggle menu">
<span class="hamburger"></span>
</button>
<div class="nav-links">
<a href="/">Home</a>
<a href="/software.html">Software</a>
<a href="/portfolio.html">Portfolio</a>
</div>
</div>
</nav>
<header>
<div class="container hero-content">
<h1 class="hero-title">Software Projects</h1>
<p class="hero-subtitle">A Collection of My Software Development Projects</p>
</div>
</header>
<section class="projects">
<div class="container">
<div class="project-grid">
<div class="project-card">
<i class="fa-solid fa-gamepad icon"></i>
<h3>Fossil Fortune</h3>
<p>A Dinosaur Tycoon Video Game where players manage their own dinosaur company. Features include worker management, floor expansion, and economic challenges. Built with JavaScript and p5.js.</p>
<div class="project-tags">
<span class="tag">JavaScript</span>
<span class="tag">p5.js</span>
<span class="tag">Game Dev</span>
<span class="tag">Team Project</span>
</div>
<div class="project-links">
<a href="https://www.fossilfortune.com" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="https://github.com/JMU-CS345/CS345_FA24_team8" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
<div class="project-card">
<i class="fa-solid fa-football icon"></i>
<h3>Football Tracker</h3>
<p>A web application tracking JMU Football commits, visits, and offers. Features real-time updates and comprehensive statistics. Built with HTML, CSS, and JavaScript.</p>
<div class="project-tags">
<span class="tag">HTML</span>
<span class="tag">CSS</span>
<span class="tag">JavaScript</span>
<span class="tag">Node.js</span>
<span class="tag">Heroku</span>
<span class="tag">Personal Project</span>
</div>
<div class="project-links">
<a href="https://www.n0va.tech/jmu-football-tracker" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="#" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
<div class="project-card">
<i class="fa-solid fa-burger icon"></i>
<h3>RoomPlate</h3>
<p>An app which is currently in development that simplifies meal planning with roommates. It uses a system in which you assign points to the meal you'd like the most for that week & creates a menu based off the selections.</p>
<div class="project-tags">
<span class="tag">HTML5</span>
<span class="tag">CSS3</span>
<span class="tag">JavaScript</span>
<span class="tag">GSAP</span>
</div>
<div class="project-links">
<a href="#" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="#" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
<div class="project-card">
<i class="fa-solid fa-bolt icon"></i>
<h3>Weather App</h3>
<p>This is a simple Weather App built using Python and Tkinter for the GUI. The app allows users to input a city name and get the current weather information for that city, including temperature, weather condition, and more. The app uses the OpenWeatherMap API to fetch weather data.</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Tkinter</span>
</div>
<div class="project-links">
<a href="#" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="https://github.com/frN0va/weather-app" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
<div class="project-card">
<i class="fa-solid fa-utensils icon"></i>
<h3>MealMate</h3>
<p>MealMate is a recipe search tool that lets you find meals based on ingredients, cuisine, or meal type. It's designed to help you quickly discover new recipes and explore different cooking ideas.</p>
<div class="project-tags">
<span class="tag">React</span>
<span class="tag">Next.js</span>
<span class="tag">Vercel</span>
</div>
<div class="project-links">
<a href="#" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="https://github.com/frN0va/recipe-finder" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
<div class="project-card">
<i class="fa-solid fa-diamond icon"></i>
<h3>Poker Calculator</h3>
<p>Another creation to continue learning React. Poker Calculator where you input your hand & the flop/turn/river to calculate the percentages on your hand.</p>
<div class="project-tags">
<span class="tag">React</span>
<span class="tag">JavaScript</span>
<span class="tag">HTML</span>
<span class="tag">Tailwind CSS</span>
</div>
<div class="project-links">
<a href="#" target="_blank" class="project-link">
<i class="fa-solid fa-link"></i> Live Demo
</a>
<a href="https://github.com/frN0va/poker-calculator" target="_blank" class="project-link">
<i class="fa-brands fa-github"></i> Source Code
</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="social-links">
<a href="https://github.com/frN0va" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://youtube.com/@N0va1" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://twitter.com/n0vaknowsball" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
<p class="copyright">© 2024 Owen Perry. All rights reserved.</p>
</div>
</footer>
<script src="app.js"></script>
<script>
gsap.registerPlugin(ScrollTrigger);
document.addEventListener('DOMContentLoaded', () => {
// Animate hero section
gsap.from('.hero-title', {
duration: 1,
y: 100,
opacity: 0,
ease: 'power4.out'
});
gsap.from('.hero-subtitle', {
duration: 1,
y: 50,
opacity: 0,
ease: 'power4.out',
delay: 0.2
});
// Animate project cards on scroll
gsap.from('.project-card', {
duration: 0.8,
y: 50,
opacity: 0,
stagger: 0.2,
ease: "power3.out",
scrollTrigger: {
trigger: '.project-grid',
start: 'top center+=100',
invalidateOnRefresh: true,
}
});
});
</script>
</body>
</html>