Skip to content

Commit 74b841f

Browse files
committed
added speicher project
1 parent 5ee14ca commit 74b841f

File tree

2 files changed

+39
-10
lines changed

2 files changed

+39
-10
lines changed

src/assets/copy.svg

+1
Loading

src/pages/index.astro

+38-10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import Layout from "../layouts/Layout.astro";
33
import Game from "../components/Game.astro";
44
import Steam from "../components/Steam.astro";
55
6-
import leiden_lettering from "../assets/leiden_lettering.svg";
7-
6+
import copy from "../assets/copy.svg";
87
import mageanoid_01 from "../assets/mageanoid_01.jpg";
98
import mageanoid_02 from "../assets/mageanoid_02.jpg";
109
import mageanoid_03 from "../assets/mageanoid_03.jpg";
@@ -18,15 +17,44 @@ import mageanoid_05 from "../assets/mageanoid_05.jpg";
1817
>
1918
Library
2019
</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"
2724
>
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/&shy;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>
3058

3159
<Game
3260
title="Mageanoid"

0 commit comments

Comments
 (0)