Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Hebb Docs

Public landing page and documentation home for the Hebb project.

This repo is intentionally static for the first pass so it can be hosted by
GitHub Pages without a build step.

## Local preview

```bash
python3 -m http.server 4173
```

Open <http://localhost:4173>.

## Deploy on GitHub Pages

Use repository settings:

- Source: `Deploy from a branch`
- Branch: `main`
- Folder: `/ (root)`

Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
147 changes: 147 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Hebb is an open-source, brain-inspired substrate for spiking networks, local-first visualizers, and continually learning AI systems."
/>
<title>Hebb</title>
<link rel="icon" href="assets/logo.png" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<a class="brand" href="/" aria-label="Hebb home">
<img src="assets/logo.png" alt="" />
<span>Hebb</span>
</a>
<nav class="site-nav" aria-label="Main navigation">
<a href="#platform">Platform</a>
<a href="#docs">Docs</a>
<a href="https://github.com/hebb-project/hebb">GitHub</a>
</nav>
</header>

<main>
<section class="hero">
<div class="hero-copy">
<p class="eyebrow">Open-source neural substrate</p>
<h1>Build systems that learn as streams of events.</h1>
<p class="lede">
Hebb combines a Rust spiking-network core, Python bindings, and a
local-first visualizer for exploring graph-shaped memory,
plasticity, and brain-inspired AI architectures.
</p>
<div class="hero-actions">
<a class="button primary" href="https://github.com/hebb-project/hebb">Open the app repo</a>
<a class="button secondary" href="https://github.com/hebb-project/hebb_core">Use the core library</a>
</div>
</div>

<div class="hero-symbol" aria-label="Abstract neural network symbol">
<div class="network-mark" aria-hidden="true">
<span class="mark-edge me1"></span>
<span class="mark-edge me2"></span>
<span class="mark-edge me3"></span>
<span class="mark-edge me4"></span>
<span class="mark-node mn1"></span>
<span class="mark-node mn2"></span>
<span class="mark-node mn3"></span>
<span class="mark-node mn4"></span>
<span class="mark-node mn5"></span>
</div>
</div>
</section>

<section class="section" id="platform">
<div class="section-heading">
<p class="eyebrow">Platform</p>
<h2>One project, two public surfaces.</h2>
</div>
<div class="platform-grid">
<article>
<span class="card-label">App</span>
<h3>Hebb desktop</h3>
<p>
A local-first Tauri app and web visualizer for opening cortex
folders, watching spikes propagate, and inspecting learned
structure.
</p>
<a href="https://github.com/hebb-project/hebb">github.com/hebb-project/hebb</a>
</article>
<article>
<span class="card-label">Library</span>
<h3>Hebb core</h3>
<p>
A pure-Rust spiking-neural-network substrate with optional disk
format support and Python bindings for research workflows.
</p>
<a href="https://github.com/hebb-project/hebb_core">github.com/hebb-project/hebb_core</a>
</article>
</div>
<figure class="desktop-shot">
<div class="shot-topbar">
<span></span>
<span></span>
<span></span>
</div>
<div class="shot-canvas" aria-label="Desktop app screenshot placeholder">
<div class="shot-sidebar">
<span></span>
<span></span>
<span></span>
</div>
<div class="shot-network" aria-hidden="true">
<span class="shot-edge se1"></span>
<span class="shot-edge se2"></span>
<span class="shot-edge se3"></span>
<span class="shot-node sn1"></span>
<span class="shot-node sn2"></span>
<span class="shot-node sn3"></span>
<span class="shot-node sn4"></span>
</div>
<div class="shot-inspector">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<figcaption>
Replace this frame with a desktop screenshot once the public demo
capture is ready.
</figcaption>
</figure>
</section>

<section class="section split" id="docs">
<div>
<p class="eyebrow">Docs</p>
<h2>Public documentation will live here.</h2>
</div>
<div class="doc-list">
<a href="https://github.com/hebb-project/hebb#readme">
<span>Get started with the desktop app</span>
<small>Local development, app architecture, and contribution flow</small>
</a>
<a href="https://github.com/hebb-project/hebb_core#readme">
<span>Use the core library</span>
<small>Rust API, Python bindings, neuron models, and disk format</small>
</a>
<a href="https://github.com/hebb-project/hebb_core/blob/main/SCHEMA.md">
<span>Read the cortex folder schema</span>
<small>Portable files for topology, weights, metadata, and runtime state</small>
</a>
</div>
</section>
</main>

<footer class="site-footer">
<span>Apache-2.0</span>
<span>Research alpha</span>
<a href="https://github.com/hebb-project">github.com/hebb-project</a>
</footer>
</body>
</html>
Loading