Skip to content

Commit d31c1d9

Browse files
Adds initial HTML structure and React application setup
Introduces a new HTML file with the basic structure for the application, including metadata and a root element for rendering. Implements the main React component that manages state for a chat application, including message handling, note-taking, and search functionalities. Establishes a simple inline SVG icon system and a markdown renderer for displaying formatted content. Sets up data structures for providers and suggestions to enhance user interaction and experience.
1 parent bbb339d commit d31c1d9

3 files changed

Lines changed: 1619 additions & 0 deletions

File tree

index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta name="description" content="Nexus — self-hosted local-first AI workspace" />
7+
<title>Nexus · Local AI Workspace</title>
8+
<link rel="preconnect" href="https://fonts.googleapis.com" />
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
10+
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='8' fill='%23c47c16'/%3E%3Cpath d='M8 10l8-4 8 4-8 4-8-4zM8 22l8 4 8-4M8 16l8 4 8-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E" />
11+
</head>
12+
<body>
13+
<div id="root"></div>
14+
<script type="module" src="/src/main.jsx"></script>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)