- Input your requirements to search for board game that match your criteria.
+ Input your requirements to search for board game that match your criteria.
+
About Bored Game
+
+ One day we were bored and wanted to play one of our board games. Our problem was that we didn't
+ know which one to play.
+
+
Rather than just pick one I decided to make this overcomplicated version of choice.
+
diff --git a/src/routes/about/+page.ts b/src/routes/about/+page.ts
new file mode 100644
index 0000000..3e13462
--- /dev/null
+++ b/src/routes/about/+page.ts
@@ -0,0 +1,9 @@
+import { dev } from '$app/environment';
+
+// we don't need any JS on this page, though we'll load
+// it in dev so that we get hot module replacement...
+export const csr = dev;
+
+// since there's no dynamic data here, we can prerender
+// it so that it gets served as a static asset in prod
+export const prerender = true;
diff --git a/src/routes/search/+page.server.ts b/src/routes/search/+page.server.ts
new file mode 100644
index 0000000..86f2cf5
--- /dev/null
+++ b/src/routes/search/+page.server.ts
@@ -0,0 +1,6 @@
+import type { Actions } from '../$types';
+import { Games } from '$root/search/actions';
+
+export const actions: Actions = {
+ search: Games.search,
+}
\ No newline at end of file
diff --git a/src/routes/search/+page.svelte b/src/routes/search/+page.svelte
new file mode 100644
index 0000000..63e6401
--- /dev/null
+++ b/src/routes/search/+page.svelte
@@ -0,0 +1 @@
+