feat: initialize novel writer application with React, Zustand, and Vite

- Added main application structure with React and TypeScript.
- Implemented Zustand for state management, including novel, chapters, characters, and relationships.
- Created initial CSS styles for the application layout and components.
- Integrated SVG assets for branding.
- Set up Vite configuration for development and build processes.
- Established TypeScript configurations for app and node environments.
This commit is contained in:
2026-01-06 18:39:16 +05:00
parent d3be98e0a7
commit 8af220f873
16 changed files with 6131 additions and 0 deletions

13
novel-writer/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Novel Writer - Webnovel Writing App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>