From fbae926b366bd5713e7e03cbd000dddf5c0e8a0e Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Sun, 7 Jun 2026 23:35:49 +0200 Subject: [PATCH] Conways Game of life is now a background ... --- cyperpunk.de/src/components/GameOfLife.astro | 105 +++++++++++++++++++ cyperpunk.de/src/pages/index.astro | 2 + 2 files changed, 107 insertions(+) create mode 100644 cyperpunk.de/src/components/GameOfLife.astro diff --git a/cyperpunk.de/src/components/GameOfLife.astro b/cyperpunk.de/src/components/GameOfLife.astro new file mode 100644 index 0000000..f164b81 --- /dev/null +++ b/cyperpunk.de/src/components/GameOfLife.astro @@ -0,0 +1,105 @@ +--- +--- + + + diff --git a/cyperpunk.de/src/pages/index.astro b/cyperpunk.de/src/pages/index.astro index 53aa6ce..3611539 100644 --- a/cyperpunk.de/src/pages/index.astro +++ b/cyperpunk.de/src/pages/index.astro @@ -1,5 +1,6 @@ --- import Blank from '../layouts/Blank.astro'; +import GameOfLife from '../components/GameOfLife.astro'; const links = [ { label: "Blog", href: "/blog", icon: "/blog.png"}, @@ -13,6 +14,7 @@ const links = [ --- +
DerGrumpf