diff --git a/website/default.nix b/website/default.nix
index 485f3af34..2349b5cd9 100644
--- a/website/default.nix
+++ b/website/default.nix
@@ -1,11 +1,13 @@
-{ pkgs, ... }:
+{ pkgs, briefcase, ... }:
 
 pkgs.stdenv.mkDerivation {
   name = "wpcarro.dev";
   src = ./.;
-  buildPhase = ''
+  installPhase = ''
     mkdir -p $out
     cp $src/index.html $out
+
+    mkdir -p $out/goals
+    cp -r ${briefcase.website.goals}/* $out/goals
   '';
-  dontInstall = true;
 }
diff --git a/website/goals/README.md b/website/goals/README.md
new file mode 100644
index 000000000..a397d8d32
--- /dev/null
+++ b/website/goals/README.md
@@ -0,0 +1,5 @@
+# Goals
+
+Kent C. Dodds taught me that I can create a React website without any bundling
+software. To practice this, I created a simple React app to track some of my
+goals. Notice how I wrote JSX inside of a `
+  
+  
+  
+