1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>Contact - Email CLI</title>
7 <link rel="stylesheet" href="../style.css" />
8 </head>
9 <body>
10 <header>
11 <nav>
12 <div class="logo">Email CLI 📧</div>
13 <ul>
14 <li><a href="/">Home</a></li>
15 <li><a href="/features">Features</a></li>
16 <li><a href="/contact">Contact</a></li>
17 </ul>
18 </nav>
19 </header>
20
21 <main>
22 <section class="contact-info">
23 <h2>Get in Touch</h2>
24 <p>Made with ❤️ by <a href="https://andrinoff.com">@andrinoff</a></p>
25 <p>
26 For support, please open an issue on the
27 <a href="https://github.com/andrinoff/email-cli/issues"
28 >GitHub repository</a
29 >.
30 </p>
31 </section>
32 <section class="support">
33 <h2>Support the Project</h2>
34 <p>
35 If you find this project useful, consider supporting the developer:
36 </p>
37 <ul>
38 <li><a href="https://patreon.com/andrinoff">Patreon</a></li>
39 <li><a href="https://ko-fi.com/andrinoff">Ko-fi</a></li>
40 </ul>
41 </section>
42 </main>
43
44 <footer>
45 <p>Copyright 2025-present Drew Smirnoff</p>
46 <p>
47 Distributed under the MIT License. See the
48 <a href="https://github.com/andrinoff/email-cli/blob/main/LICENSE"
49 >LICENSE</a
50 >
51 file for more information.
52 </p>
53 <p>
54 <a
55 href="https://github.com/andrinoff/email-cli/blob/main/CODE_OF_CONDUCT.md"
56 >Code of Conduct</a
57 >
58 </p>
59 </footer>
60 </body>
61</html>