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>Get Started - 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>Installation via Homebrew 🍺</h2>
24        <p>To install Email CLI using Homebrew:</p>
25        <pre><code>brew tap andrinoff/email-cli <br>
26brew install email-cli</code></pre>
27        <p>After installation, run:</p>
28        <pre><code>email-cli</code></pre>
29        <p>to get started.</p>
30      </section>
31
32      <section class="usage">
33        <h2>Build from Source 🛠️</h2>
34        <p>Email CLI is written in <strong>Go</strong>. To build manually:</p>
35        <ol>
36          <li>Ensure you have Go installed (<code>go version</code>).</li>
37          <li>Clone the repository:</li>
38          <pre><code>git clone https://github.com/andrinoff/email-cli.git</code></pre>
39          <li>Navigate to the project folder:</li>
40          <pre><code>cd email-cli</code></pre>
41          <li>Build the binary:</li>
42          <pre><code>go build -o email-cli</code></pre>
43          <li>Run it:</li>
44          <pre><code>./email-cli</code></pre>
45        </ol>
46        <p>Optional: Move the binary to your path:</p>
47        <pre><code>sudo mv email-cli /usr/local/bin</code></pre>
48      </section>
49
50      <section class="contact-info">
51        <h2>Repository 📦</h2>
52        <p>
53          GitHub:
54          <a href="https://github.com/andrinoff/email-cli" target="_blank"
55            >andrinoff/email-cli</a
56          >
57        </p>
58      </section>
59    </main>
60
61    <footer>
62      <p>Copyright 2025-present Drew Smirnoff</p>
63      <p>
64        Distributed under the MIT License. See the
65        <a href="https://github.com/andrinoff/email-cli/blob/main/LICENSE"
66          >LICENSE</a
67        >
68        file for more information.
69      </p>
70      <p>
71        <a
72          href="https://github.com/andrinoff/email-cli/blob/main/CODE_OF_CONDUCT.md"
73          >Code of Conduct</a
74        >
75      </p>
76    </footer>
77  </body>
78</html>