|
| 1 | +<!DOCTYPE html> |
| 2 | + |
| 3 | +<html lang="en"> |
| 4 | + <head> |
| 5 | + <meta charset="UTF-8" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 7 | + <title>WriterSharp - About</title> |
| 8 | + <link rel="stylesheet" href="css/styles.css" /> |
| 9 | + <link rel="icon" type="image/x-icon" href="assets/favicon.ico"> |
| 10 | + </head> |
| 11 | + <body> |
| 12 | + <header> |
| 13 | + <div class="title">WriterSharp - About</div> |
| 14 | + <nav> |
| 15 | + <a href="index.html">Home</a> |
| 16 | + <a href="#">Download</a> |
| 17 | + <a href="#">Plugins</a> |
| 18 | + <a href="devlogs/index.html">Devlogs</a> |
| 19 | + <a href="about.html">About</a> |
| 20 | + <button id="mode-toggle"><i class="nf nf-md-theme_light_dark"></i></button> |
| 21 | + </nav> |
| 22 | + </header> |
| 23 | + |
| 24 | + <main> |
| 25 | + <section class="hero alt-bg3"> |
| 26 | + <h1 class="huge-title">About WriterSharp</h1> |
| 27 | + <p><i class="nf nf-fa-clock"></i> Time until v0.0.1-alpha:</p> |
| 28 | + <div id="timer">Loading...</div> |
| 29 | + </section> |
| 30 | + |
| 31 | + <section> |
| 32 | + <div class="grid"> |
| 33 | + <div class="card"> |
| 34 | + <h2><i class="nf nf-fa-user"></i> Created by MF366...</h2> |
| 35 | + <p>WriterSharp was created entirely by Matthew (MF366), using C# and Avalonia.</p> |
| 36 | + <a href="https://mf366-coding.github.io/">Learn More <i class="nf nf-fa-arrow_right"></i></a> |
| 37 | + </div> |
| 38 | + <div class="card"> |
| 39 | + <h2><i class="nf nf-fa-group"></i> ...for everyone.</h2> |
| 40 | + <p>WriterSharp is free and open-source. Anyone can contribute to it and anyone can use it.</p> |
| 41 | + <a href="https://opensource.com/resources/what-open-source/">Learn More <i class="nf nf-fa-arrow_right"></i></a> |
| 42 | + </div> |
| 43 | + <div class="card"> |
| 44 | + <h2><i class="nf nf-md-puzzle"></i> Extensibility is key...</h2> |
| 45 | + <p>WriterSharp has a powerful plugin API that lets developers extend WriterSharp in ways that one might not think are possible.</p> |
| 46 | + <a href="#">Learn More <i class="nf nf-fa-arrow_right"></i></a> |
| 47 | + </div> |
| 48 | + <div class="card"> |
| 49 | + <h2><i class="nf nf-fa-paintbrush"></i> ...and so is innovation.</h2> |
| 50 | + <p>WriterSharp reimagines code editing, by being one of the only code editors to actually come with a bundled "Designer" which plugins can use in whichever way they want: from simple Markdown previews to straight-up real-time UI designing or even image editing. This way, plugin developers don't need to create their own "Designer" panels - they simply push changes to the existing one.</p> |
| 51 | + <a href="#">Learn More <i class="nf nf-fa-arrow_right"></i></a> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + </section> |
| 55 | + </main> |
| 56 | + |
| 57 | + <footer> |
| 58 | + <p id="footer-copyright"> |
| 59 | + Copyright <i class="nf nf-fa-copyright"></i> 2025 MF366 |
| 60 | + </p> |
| 61 | + </footer> |
| 62 | + |
| 63 | + <script src="js/countdown.js"></script> |
| 64 | + <script src="js/dark-mode.js"></script> |
| 65 | + <script src="js/scroll-animation.js"></script> |
| 66 | + </body> |
| 67 | +</html> |
0 commit comments