index.html

 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>Email CLI - Your Terminal Email Client</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="hero">
23        <div class="hero-text">
24          <h1>A beautiful and functional email client for your terminal.</h1>
25          <p>
26            Never leave your command line to check your inbox or send an email
27            again!
28          </p>
29        </div>
30        <div class="hero-image">
31          <img src="assets/preview.png" alt="Email CLI Preview" />
32        </div>
33        <a href="/get-started" class="button">Get Started</a>
34      </section>
35    </main>
36
37    <footer>
38      <p>Copyright 2025-present Drew Smirnoff</p>
39      <p>
40        Distributed under the MIT License. See the
41        <a href="https://github.com/andrinoff/email-cli/blob/master/LICENSE"
42          >LICENSE</a
43        >
44        file for more information.
45      </p>
46      <p>
47        <a
48          href="https://github.com/andrinoff/email-cli/blob/master/CODE_OF_CONDUCT.md"
49          >Code of Conduct</a
50        >
51      </p>
52    </footer>
53  </body>
54</html>