Initial comimt

This commit is contained in:
Benjamin Bädorf 2021-05-30 16:55:34 +02:00
commit 2b838bbeae
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
9 changed files with 699 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
eval "$(lorri direnv)"

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
tags

Binary file not shown.

1
assets/pubsolar.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

689
index.html Normal file

File diff suppressed because one or more lines are too long

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.nodejs
];
}