-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
309 lines (295 loc) · 9.08 KB
/
index.html
File metadata and controls
309 lines (295 loc) · 9.08 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
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Smish-It | Your SMS Shield</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet" />
<style>
html {
scroll-behavior: smooth;
}
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f4f6f8;
color: #333;
}
header {
background: #1a237e;
color: white;
padding: 1rem 2rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}
.logo-title {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.logo-title img {
height: 100px;
}
.logo-title h1 {
margin: 0;
font-size: 2.5rem;
font-weight: bold;
}
.logo-title p {
margin: 0;
font-size: 1rem;
}
nav {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
position: relative;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 2rem;
max-width: 1200px;
margin: auto;
}
.team {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 1rem;
width: 220px;
text-align: center;
}
.card img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 0.5rem;
}
.how-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.how-item {
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
background: white;
cursor: pointer;
}
.how-item img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease;
}
.how-item:hover img {
transform: scale(1.05);
}
.overlay {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
opacity: 0;
transition: opacity 0.3s ease;
}
.how-item:hover .overlay {
opacity: 1;
}
.how-text {
padding: 1rem;
}
.how-text h3 {
margin: 0.5rem 0;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
z-index: 999;
}
.modal-content {
background: white;
padding: 2rem;
border-radius: 10px;
max-width: 600px;
width: 90%;
position: relative;
}
.modal-close {
position: absolute;
top: 10px;
right: 15px;
font-size: 2rem;
color: #333;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<div class="logo-title">
<img src="logo.png" alt="Smish-It logo" />
<div>
<h1>Smish-it</h1>
<p>Your SMS Shield</p>
</div>
</div>
<nav>
<a href="#about">About</a>
<a href="#how-it-works">How It Works</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>About Our Business</h2>
<p>Smish-it protects users from SMS phishing by checking links in text messages against trusted threat databases in real time. It’s designed for anyone—from seniors to tech professionals—who wants quick, reliable feedback on suspicious messages. By automating link analysis, Smish-it reduces stress, prevents scams, and keeps personal information safe.</p>
</section>
<section id="founders">
<h2>Meet the Founders</h2>
<div class="team">
<div class="card">
<img src="mason-profile.png" alt="Mason Coler-Dark" />
<h3>Mason Coler-Dark</h3>
<a href="https://www.linkedin.com/in/mason-coler-dark-4577b9257/" target="_blank">
<img src="linkedin.png" alt="LinkedIn" style="width: 24px; height: 24px; border-radius: 50%;" />
</a>
</div>
<div class="card">
<img src="Isabel.jpg" alt="Isabel Jacobs" />
<h3>Isabel Jacobs</h3>
<a href="https://www.linkedin.com/in/isabel-jacobs115/" target="_blank">
<img src="linkedin.png" alt="LinkedIn" style="width: 24px; height: 24px; border-radius: 50%;" />
</a>
</div>
<div class="card">
<img src="Tatum.png" alt="Tatum Jones" />
<h3>Tatum Jones</h3>
<a href="https://www.linkedin.com/in/tatum-jones-3735a9248/" target="_blank">
<img src="linkedin.png" alt="LinkedIn" style="width: 24px; height: 24px; border-radius: 50%;" />
</a>
</div>
</div>
</section>
<section id="how-it-works">
<h2>How It Works</h2>
<div class="how-grid">
<div class="how-item" onclick="openModal(1)">
<img src="mason-profile.png" alt="Step 1" />
<div class="overlay">+</div>
<div class="how-text">
<h3>Step 1: Suspicious Message</h3>
<p>User receives a strange or unrecognized text with a link.</p>
</div>
</div>
<div class="how-item" onclick="openModal(2)">
<img src="logo.png" alt="Step 2" />
<div class="overlay">+</div>
<div class="how-text">
<h3>Step 2: Smish-It Scans</h3>
<p>The link is analyzed in real-time for known threats and phishing patterns.</p>
</div>
</div>
<div class="how-item" onclick="openModal(3)">
<img src="nsf.png" alt="Step 3" />
<div class="overlay">+</div>
<div class="how-text">
<h3>Step 3: Safe or Unsafe Verdict</h3>
<p>Smish-It instantly provides the user a result — safe to click or not.</p>
</div>
</div>
</div>
</section>
<!-- Modal -->
<div id="modal" class="modal">
<div class="modal-content" id="modal-content">
<span class="modal-close" onclick="closeModal()">×</span>
</div>
</div>
<!-- Contact -->
<section id="contact" class="contact-form">
<h2>Contact Us</h2>
<p>If you're a sponsor, partner, or just want to connect, please reach out below:</p>
<form action="https://formspree.io/f/YOUR_FORM_ID" method="POST" style="display: flex; flex-direction: column; gap: 1rem; max-width: 500px; margin: auto;">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit" style="padding: 0.75rem; background-color: #1a237e; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem;">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer style="background: #f4f6f8; text-align: center; padding: 2rem;">
<div class="supporters">
<p>© 2025 Smish-It. Patent pending.</p>
<p>Supported by:</p>
<a href="https://www.nsf.gov/funding/initiatives/i-corps/about-i-corps" target="_blank">
<img src="nsf.png" alt="NSF I-Corps" style="width: 48px; height: 48px; border-radius: 50%; margin: 0 10px;">
</a>
<a href="https://www.boisestate.edu/venturecollege/" target="_blank">
<img src="venture-college.png" alt="Venture College" style="width: 48px; height: 48px; border-radius: 50%; margin: 0 10px;">
</a>
</div>
</footer>
<!-- Modal Logic -->
<script>
function openModal(step) {
const modal = document.getElementById('modal');
const content = document.getElementById('modal-content');
let html = `<span class="modal-close" onclick="closeModal()">×</span>`;
if (step === 1) {
html += `<h2>Step 1: Suspicious Message</h2><p>These are just a few we personally received. These are real texts. Here's how we help.</p><img src="scams.png" alt="Scam examples" style="width:100%; margin-top:1rem;">`;
} else if (step === 2) {
html += `<h2>Step 2: Smish-It Scans</h2><p>Smish-It instantly analyzes the link against multiple threat databases using real-time scanning tools.</p>`;
} else if (step === 3) {
html += `<h2>Step 3: Verdict</h2><p>After scanning, Smish-It tells you if the link is safe to click or potentially dangerous — no guessing needed.</p>`;
}
content.innerHTML = html;
modal.style.display = 'flex';
}
function closeModal() {
document.getElementById('modal').style.display = 'none';
}
window.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
closeModal();
}
});
</script>
</body>
</html>