@@ -3,8 +3,7 @@ import Layout from "../layouts/Layout.astro";
3
3
import Game from " ../components/Game.astro" ;
4
4
import Steam from " ../components/Steam.astro" ;
5
5
6
- import leiden_lettering from " ../assets/leiden_lettering.svg" ;
7
-
6
+ import copy from " ../assets/copy.svg" ;
8
7
import mageanoid_01 from " ../assets/mageanoid_01.jpg" ;
9
8
import mageanoid_02 from " ../assets/mageanoid_02.jpg" ;
10
9
import mageanoid_03 from " ../assets/mageanoid_03.jpg" ;
@@ -18,15 +17,44 @@ import mageanoid_05 from "../assets/mageanoid_05.jpg";
18
17
>
19
18
Library
20
19
</h1 >
21
- <Game
22
- title ={ { src: leiden_lettering .src , alt: " Leiden" }}
23
- img ={ []}
24
- genres ={ [" Adventure" , " Dark Fantasy" ]}
25
- platforms ={ [" windows" , " mac" , " linux" ]}
26
- release =" 2025"
20
+
21
+ <section
22
+ class =" block py-4 px-6 my-16 rounded-xl shadow md:mx-auto bg-neutral-800 shadow-black md:w-[calc(100dvw-1rem)] md:max-w-[101rem]"
23
+ id =" speicher"
27
24
>
28
- <p class =" text-pretty" >Work in progress</p >
29
- </Game >
25
+ <h2 class =" text-2xl font-bold text-white" >Speicher</h2 >
26
+ <br />
27
+ <p class =" text-pretty" >
28
+ A lightweight, embedded in-memory NoSQL database for Go applications.
29
+ Designed for seamless integration with zero configuration—no external
30
+ servers, query languages, or code generation. Offers thread-safe
31
+ operations and an intuitive API for direct interaction with native Go data
32
+ structures, accelerating development while simplifying real-time data
33
+ management.
34
+ </p >
35
+ <p >
36
+ Take a look at the <a
37
+ class =" underline"
38
+ href =" https://github.com/bloodmagesoftware/speicher/wiki"
39
+ target =" _blank" >documentation</a
40
+ > to get some examples.
41
+ </p >
42
+ <br />
43
+ <p
44
+ class =" flex flex-row items-center py-2 px-4 rounded-md bg-neutral-600 w-fit"
45
+ >
46
+ <code
47
+ class =" pr-4 break-words break-all border-r border-solid border-r-neutral-200"
48
+ >go get -u github.com/­ bloodmagesoftware/speicher@latest</code
49
+ >
50
+ <img
51
+ alt =" copy"
52
+ class =" ml-4 h-6 cursor-pointer hover:opacity-75"
53
+ src ={ copy .src }
54
+ onclick =" navigator .clipboard .writeText (' github.com/bloodmagesoftware/speicher' )"
55
+ />
56
+ </p >
57
+ </section >
30
58
31
59
<Game
32
60
title =" Mageanoid"
0 commit comments