-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PactMate - Find your perfect co-founder</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="PactMateLogo.jpeg" type="image/jpeg">
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script>
(function () {
emailjs.init("nFWV26yJl_Y0Hkm8B"); // Replace with your EmailJS public key (user ID)
})();
</script>
</head>
<body>
<div id="notification" class="notification"></div>
<div class="container">
<div class="logo-container">
<img
src="pactmatLogoTransparent.png"
alt="PactMate Logo"
class="logo-image"
/>
</div>
<main>
<h2>Find your co-founder with PactMate</h2>
<p>
Turn your search for a co-founder into a seamless journey with
PactMate.<br></br> Our platform help solo developers find the perfect
co-founders to collaborate and build their dream projects.
</p>
<div class="form-container">
<p>Join Arya, Arjun, and 27 others on the waitlist</p>
<form id="joinForm">
<input
type="email"
id="email"
placeholder="Enter your email"
required
/>
<button type="submit">Join</button>
</form>
</div>
<p><a href="https://zaap.bio/launch_it" target="_blank">Launch It</a> | <a href="https://twitter.com/_launch_it_" target="_blank">Twitter</a> | <a href="https://www.instagram.com/_launch_it_" target="_blank">Instagram</a></p>
</main>
</div>
<script src="script.js"></script>
</body>
</html>