Skip to content

Commit 0b43867

Browse files
committed
we got site
1 parent a736137 commit 0b43867

File tree

13 files changed

+642
-4
lines changed

13 files changed

+642
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ node_modules/
304304
*.dsw
305305
*.dsp
306306

307-
# Visual Studio 6 technical files
308-
*.ncb
309-
*.aps
310-
311307
# Visual Studio LightSwitch build output
312308
**/*.HTMLClient/GeneratedArtifacts
313309
**/*.DesktopClient/GeneratedArtifacts

Site/about.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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>

Site/assets/favicon.ico

189 KB
Binary file not shown.

Site/assets/img/herobg.png

339 KB
Loading

Site/assets/img/herobg2.png

308 KB
Loading

Site/assets/img/herobg3.png

285 KB
Loading

Site/assets/img/herobg4.png

259 KB
Loading

0 commit comments

Comments
 (0)