diff --git a/public/assets/preview.png b/public/assets/preview.png new file mode 100644 index 0000000000000000000000000000000000000000..13c66cbd99445aa7a972b6f43f977e2ef596155c Binary files /dev/null and b/public/assets/preview.png differ diff --git a/public/contact/index.html b/public/contact/index.html new file mode 100644 index 0000000000000000000000000000000000000000..1f914d1caacb46c4eb9044fb4baef93667814e8e --- /dev/null +++ b/public/contact/index.html @@ -0,0 +1,61 @@ + + + + + + Contact - Email CLI + + + +
+ +
+ +
+
+

Get in Touch

+

Made with ❤️ by @andrinoff

+

+ For support, please open an issue on the + GitHub repository. +

+
+
+

Support the Project

+

+ If you find this project useful, consider supporting the developer: +

+ +
+
+ + + + diff --git a/public/features/index.html b/public/features/index.html new file mode 100644 index 0000000000000000000000000000000000000000..69804b4a1437d89302aff5814b3731dce40c2d11 --- /dev/null +++ b/public/features/index.html @@ -0,0 +1,93 @@ + + + + + + Features - Email CLI + + + +
+ +
+ +
+
+

Features ✨

+ +
+
+

Usage ⌨️

+ +
+
+ + + + diff --git a/public/get-started/index.html b/public/get-started/index.html new file mode 100644 index 0000000000000000000000000000000000000000..a6bd21229b8549c4e0ff1205576c8c3f8160e20a --- /dev/null +++ b/public/get-started/index.html @@ -0,0 +1,78 @@ + + + + + + Get Started - Email CLI + + + +
+ +
+ +
+
+

Installation via Homebrew 🍺

+

To install Email CLI using Homebrew:

+
brew tap andrinoff/email-cli 
+brew install email-cli
+

After installation, run:

+
email-cli
+

to get started.

+
+ +
+

Build from Source 🛠️

+

Email CLI is written in Go. To build manually:

+
    +
  1. Ensure you have Go installed (go version).
  2. +
  3. Clone the repository:
  4. +
    git clone https://github.com/andrinoff/email-cli.git
    +
  5. Navigate to the project folder:
  6. +
    cd email-cli
    +
  7. Build the binary:
  8. +
    go build -o email-cli
    +
  9. Run it:
  10. +
    ./email-cli
    +
+

Optional: Move the binary to your path:

+
sudo mv email-cli /usr/local/bin
+
+ +
+

Repository 📦

+

+ GitHub: + andrinoff/email-cli +

+
+
+ + + + diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000000000000000000000000000000000000..8d7e7b1406ecf53bc7c7c71c51e6acf63e670e3a --- /dev/null +++ b/public/index.html @@ -0,0 +1,54 @@ + + + + + + Email CLI - Your Terminal Email Client + + + +
+ +
+ +
+
+
+

A beautiful and functional email client for your terminal.

+

+ Never leave your command line to check your inbox or send an email + again! +

+
+
+ Email CLI Preview +
+ Get Started +
+
+ + + + diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000000000000000000000000000000000000..bf8af6221942b6eeb12437021aa146dd3b631713 --- /dev/null +++ b/public/style.css @@ -0,0 +1,126 @@ +body { + font-family: "Courier New", Courier, monospace; + margin: 0; + background-color: #121212; + color: #d0f0c0; +} + +main { + min-height: 100vh; +} + +header { + background-color: #1e1e1e; + border-bottom: 1px solid #444; + padding: 1rem 2rem; +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; +} + +.logo { + font-size: 1.5rem; + font-weight: bold; + color: #00ff5f; +} + +nav ul { + list-style: none; + margin: 0; + padding: 0; + display: flex; +} + +nav ul li { + margin-left: 1.5rem; +} + +nav ul li a { + text-decoration: none; + color: #d0f0c0; +} + +nav ul li a:hover { + color: #00ff5f; +} + +main { + padding: 2rem; +} + +.features-list h2, +.usage h2, +.contact-info h2, +.support h2 { + color: #00ff5f; + border-bottom: 2px solid #00ff5f; + padding-bottom: 0.5rem; + margin-bottom: 1rem; +} + +a { + color: #00ff5f; + text-decoration: none; +} + +.features-list ul, +.usage ul { + list-style: none; + padding: 0; +} + +.features-list ul li, +.usage ul li { + background-color: #1e1e1e; + padding: 1rem; + border-radius: 5px; + margin-bottom: 1rem; + border-left: 4px solid #00ff5f; + color: #d0f0c0; +} + +footer { + text-align: center; + padding: 2rem; + background-color: #1e1e1e; + border-top: 1px solid #444; + font-size: 0.9rem; + color: #888; +} + +footer a { + color: #00ff5f; + text-decoration: none; +} + +footer a:hover { + text-decoration: underline; +} + +.button { + display: inline-block; + padding: 0.5rem 1rem; + background-color: #00ff5f; + color: #121212; + text-decoration: none; + border-radius: 5px; + transition: background-color 0.3s ease; +} + +.hero { + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + padding: 2rem; +} + +code { + background-color: #1e1e1e; + padding: 0.3rem; + border-radius: 5px; + color: #00ff5f; +}