add static landing page

This commit is contained in:
Yisroel Baum 2026-08-05 20:18:22 +03:00
parent 26a5baf72a
commit 37b7e4f619
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
20 changed files with 1564 additions and 11 deletions

18
nix/site.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs }:
pkgs.stdenvNoCC.mkDerivation {
pname = "tide-landing-page";
version = "1.0.0";
src = ../site;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p "$out"
cp -R . "$out"
runHook postInstall
'';
}