aboutsummaryrefslogtreecommitdiff
path: root/projects/index.html
blob: d9570a1761c8e328d2884c0e71bcb6a1169eb052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta property="og:title" content = "Projects">
    <meta property="og:site_name" content = "pml68.dev">
    <meta property="og:image" content = "https://pml68.dev/assets/pml68.webp">
    <meta property="og:description" content = "pml68—projects">
    <link rel="icon" href="/assets/pml68.webp">
    <link rel="stylesheet" href="/style.css">
    <title>Projects</title>
  </head>

  <body>
    <img src="/assets/wave1.svg" alt="Wave decoration" class="wave wave1">
    <img src="/assets/wave2.svg" alt="Wave decoration" class="wave wave2">

    <div class="container">
      <div class="spacer">
        <div class="home">
          Take me back <a href="/"><b>home</b></a>
        </div>
      </div>
      <div class="project-container">
        <div class="project">
          <a href="https://sr.ht/~pml68/pml68.dev" target="_blank">
            <img src="/assets/pml68.webp" alt="pml68.dev icon" class="project-icon">
            <div class="content">
              <h3>pml68.dev</h3>
              <p>My personal website—the one you're currently viewing</p>
            </div>
          </a>
        </div>
        <div class="project">
          <a href="https://github.com/foghorn-rs/foghorn" target="_blank">
            <img src="https://avatars.githubusercontent.com/u/209838582?s=200&v=4" alt="Foghorn icon" class="project-icon">
            <div class="content">
              <h3>Foghorn</h3>
              <p>Signal Messenger client written in Rust and Iced</p>
            </div>
          </a>
        </div>
        <div class="project">
          <a href="https://sr.ht/~pml68/iced-builder" target="_blank">
            <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon">
            <div class="content">
              <h3>iced Builder</h3>
              <p>UI builder for iced, built with iced. (WIP)</p>
            </div>
          </a>
        </div>
        <div class="project">
          <a href="https://sr.ht/~pml68/iced_dialog" target="_blank">
            <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon">
            <div class="content">
              <h3>iced_dialog</h3>
              <p>Custom dialog for iced</p>
            </div>
          </a>
        </div>
        <div class="project">
          <a href="https://sr.ht/~pml68/iced_selection" target="_blank">
            <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon">
            <div class="content">
              <h3>iced_selection</h3>
              <p>Text selection for iced</p>
            </div>
          </a>
        </div>
      </div>
    </div>
  </body>
</html>