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>Features - 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="features-list">
23        <h2>Features ✨</h2>
24        <ul>
25          <li>
26            <strong>View Your Inbox:</strong> Fetches and displays a list of
27            your most recent emails.
28          </li>
29          <li>
30            <strong>Read Emails:</strong> Select an email from your inbox to
31            view its content.
32          </li>
33          <li>
34            <strong>Compose and Send:</strong> A simple and intuitive interface
35            for writing and sending new emails.
36          </li>
37          <li>
38            <strong>Beautiful TUI:</strong> A clean and modern terminal user
39            interface that's a pleasure to use.
40          </li>
41          <li>
42            <strong>Secure:</strong> Uses a local configuration file to store
43            your credentials securely.
44          </li>
45          <li>
46            <strong>Supported Providers:</strong> Works with Gmail and iCloud.
47          </li>
48        </ul>
49      </section>
50      <section class="usage">
51        <h2>Usage ⌨️</h2>
52        <ul>
53          <li>
54            <strong>Main Menu:</strong> Use the `Up`/`Down` arrow keys or
55            `k`/`j` to navigate the main menu choices. Press `Enter` to select
56            an option.
57          </li>
58          <li>
59            <strong>Inbox View:</strong> In the inbox, use the arrow keys to
60            scroll through your emails. Press `Enter` to open and view a
61            selected email.
62          </li>
63          <li>
64            <strong>Composer:</strong> Use `Tab` or the arrow keys to move
65            between the "To", "Subject", and "Body" fields.
66          </li>
67          <li>
68            <strong>Go Back/Quit:</strong> Press `Esc` from any view to return
69            to the main menu. Press `Ctrl+C` at any time to quit the
70            application.
71          </li>
72        </ul>
73      </section>
74    </main>
75
76    <footer>
77      <p>Copyright 2025-present Drew Smirnoff</p>
78      <p>
79        Distributed under the MIT License. See the
80        <a href="https://github.com/andrinoff/email-cli/blob/main/LICENSE"
81          >LICENSE</a
82        >
83        file for more information.
84      </p>
85      <p>
86        <a
87          href="https://github.com/andrinoff/email-cli/blob/main/CODE_OF_CONDUCT.md"
88          >Code of Conduct</a
89        >
90      </p>
91    </footer>
92  </body>
93</html>