commit e5a5666dd7408aeed57edef3eb3e9db7f87ee9ca Author: Will Anderson Date: Tue Apr 28 17:57:30 2026 -0500 initial commit — Neuron landing page Bubble-style chat UI, return visit memory replay, values section, favicon, Neuron-generated email bodies, 3-question return flow. diff --git a/src/assets/favicon-16.png b/src/assets/favicon-16.png new file mode 100644 index 0000000..a365c1c Binary files /dev/null and b/src/assets/favicon-16.png differ diff --git a/src/assets/favicon-32.png b/src/assets/favicon-32.png new file mode 100644 index 0000000..a489a0f Binary files /dev/null and b/src/assets/favicon-32.png differ diff --git a/src/assets/neuron-icon.png b/src/assets/neuron-icon.png new file mode 100644 index 0000000..3d4311c Binary files /dev/null and b/src/assets/neuron-icon.png differ diff --git a/src/landing.html b/src/landing.html new file mode 100644 index 0000000..00ca161 --- /dev/null +++ b/src/landing.html @@ -0,0 +1,1400 @@ + + + + + + Neuron + + + + + + + + +
+ Neuron +
+ +
+
+ + +
+

Hi.

+

What's your name?

+
+ + +
+
+ + +
+
+
+
+
+
+ + + +
+ + +
+

+

I'll send you a link. Close the tab. Come back when you're ready.
That's the demo.

+
+ + +
+ +
+ + +
+
+

Go do something else for a bit.

+

Then come back to this page.

+

+
+ + +
+

+ +
+
+
+
+
+ + + + +
+ +
+
+ + + + diff --git a/src/main.el b/src/main.el new file mode 100644 index 0000000..0b4e623 --- /dev/null +++ b/src/main.el @@ -0,0 +1,7 @@ +// main.el — Neuron landing page server + +let html_path: String = cwd() + "/src/landing.html" +println("Neuron landing · serving " + html_path) +state_set("__html_file__", html_path) + +http_serve(3001)