diff --git a/README.md b/README.md
index 5c6db80..d7fab3a 100644
--- a/README.md
+++ b/README.md
@@ -2,34 +2,36 @@
Game Of Life Rust WASM
-
-
-
-
-
-
Built with 🦀🕸 by The Rust and WebAssembly Working Group
+![Sample Game Of Life](media/sample.gif)
+
## About
### 🛠️ Build with `wasm-pack build`
```
+cd rust
wasm-pack build
```
### 🔬 Test in Headless Browsers with `wasm-pack test`
```
+cd rust
wasm-pack test --headless --chrome
```
+### 🏠 Run website locally
+
+```
+cd web
+npm install
+npm run start
+```
+
## 🔋 Batteries Included
- [`wasm-bindgen`](https://github.com/rustwasm/wasm-bindgen) for communicating
diff --git a/media/sample.gif b/media/sample.gif
new file mode 100644
index 0000000..22fb924
Binary files /dev/null and b/media/sample.gif differ
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index aeb25ff..2fdcf00 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -173,7 +173,7 @@ impl Universe {
pub fn new(width: u32, height: u32) -> Universe {
utils::set_panic_hook();
- let cells = Universe::get_random_universe(&width, &height);
+ let cells = (0..width * height).map(|_| Cell::Dead).collect();
Universe {
speed: DEFAULT_SPEED,
diff --git a/web/dist/619d601988458a9ddef8.module.wasm b/web/dist/619d601988458a9ddef8.module.wasm
new file mode 100644
index 0000000..94165a3
Binary files /dev/null and b/web/dist/619d601988458a9ddef8.module.wasm differ
diff --git a/web/dist/70c7a3d4af60d9e17b97.module.wasm b/web/dist/70c7a3d4af60d9e17b97.module.wasm
deleted file mode 100644
index d6a91da..0000000
Binary files a/web/dist/70c7a3d4af60d9e17b97.module.wasm and /dev/null differ
diff --git a/web/dist/index.html b/web/dist/index.html
index 501d54b..ecb48c1 100644
--- a/web/dist/index.html
+++ b/web/dist/index.html
@@ -8,4 +8,4 @@
align-items: center;
justify-content: center;
}