-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (84 loc) · 4.1 KB
/
contact.html
File metadata and controls
97 lines (84 loc) · 4.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MindMend – Contact</title>
<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=Playfair+Display:wght@500;700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container nav">
<div class="brand">MINDMEND</div>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="ai.html">MINDMEND AI</a></li>
<li><a href="journal.html">JOURNAL</a></li>
<li><a href="counselor.html">COUNSELOR</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="login.html" id="accountLink">SIGN UP</a></li>
<li><button id="logoutBtn" class="btn" style="display:none">LOG OUT</button></li>
</ul>
</nav>
</div>
<div style="text-align:center;color:#fff;padding:6px 0 14px;opacity:.9">
“EMPOWERING STUDENTS TO EXPRESS, HEAL, AND GROW”
</div>
</header>
<main class="container section">
<h1 style="font-family:Playfair Display,serif;margin-top:0">Get in Touch</h1>
<p class="lead">Have questions or want to connect? Reach out to us via phone, email, or stop by our office.</p>
<div class="contact-grid">
<div class="card">
<h3>Email</h3>
<p><strong>Mindmend@outlook.com</strong></p>
</div>
<div class="card">
<h3>Phone</h3>
<p><strong>+1 919-823-2206</strong></p>
</div>
<div class="card">
<h3>Address</h3>
<p><strong>1801 Fayetteville St, Durham, NC 27707</strong></p>
</div>
</div>
<div class="card contact-form">
<h3 style="margin-top:0">Contact Form</h3>
<div class="field"><label>Name</label><input placeholder="Your name"/></div>
<div class="field"><label>Email</label><input placeholder="Your email"/></div>
<div class="field"><label>Subject</label><input placeholder="Subject"/></div>
<div class="field"><label>Message</label><textarea rows="5" placeholder="Type your message…"></textarea></div>
<button class="btn">Send</button>
</div>
<div style="display:flex;gap:12px;margin-top:16px">
<span title="Instagram">📷</span>
<span title="X / Twitter">✖️</span>
<span title="Facebook">📘</span>
<span title="LinkedIn">💼</span>
</div>
</main>
<footer class="container">
<div>© <span id="year"></span> MindMend • All rights reserved.</div>
</footer>
<!-- Supabase client must be first -->
<script type="module">
import { createClient } from "https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2/+esm";
window.SUPABASE_URL = "https://pgpxmtkzgifspotnjrpi.supabase.co";
window.SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InBncHhtdGt6Z2lmc3BvdG5qcnBpIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTg4Mzc3MjQsImV4cCI6MjA3NDQxMzcyNH0.me3WRQM5CdGq8bAIRNMsk07lUqxkLUbeIRAgvrc_sYs";
window.supabase = createClient(window.SUPABASE_URL, window.SUPABASE_ANON_KEY);
</script>
<!-- Core (auth/header/guard/boot) -->
<script src="core.js"></script>
<!-- Page-specific -->
<!-- journal.html also needs TinyMCE before app.js: -->
<script src="https://cdn.jsdelivr.net/npm/tinymce@6/tinymce.min.js" referrerpolicy="origin"></script>
<script src="contact.js"></script>
<script>
(function(){if(!window.chatbase||window.chatbase("getState")!=="initialized"){window.chatbase=(...arguments)=>{if(!window.chatbase.q){window.chatbase.q=[]}window.chatbase.q.push(arguments)};window.chatbase=new Proxy(window.chatbase,{get(target,prop){if(prop==="q"){return target.q}return(...args)=>target(prop,...args)}})}const onLoad=function(){const script=document.createElement("script");script.src="https://www.chatbase.co/embed.min.js";script.id="lm88arw21cRHFouvUtDSU";script.domain="www.chatbase.co";document.body.appendChild(script)};if(document.readyState==="complete"){onLoad()}else{window.addEventListener("load",onLoad)}})();
</script>
</body>
</html>