Skip to content
Open
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
48 changes: 48 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
```
# Dependencies
node_modules/

# Build outputs
dist/
build/
coverage/
htmlcov/

# Environment variables
.env
.env.local
.env.*

# IDE files
.vscode/
.idea/
*.swp
*.swo
*.tmp

# Python specific
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
*.egg-info/
.eggs/
.venv/
venv/
.mypy_cache/
.pytest_cache/

# Logs
*.log

# OS generated files
.DS_Store
Thumbs.db

# Testing
coverage/
.nyc_output/
istanbul/
```
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#1a1a2e" />
<meta name="description" content="NoteFlow AI — A powerful, AI-enhanced online notepad with rich text editing, folders, dark mode, and more." />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

<!-- Content Security Policy -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: blob:; script-src 'self' 'unsafe-inline' https://js.puter.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src https://fonts.gstatic.com; connect-src 'self' https://api.puter.com; img-src 'self' data: blob:; frame-src https://js.puter.com;" />

<title>NoteFlow AI — Smart Online Notepad</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<script src="https://js.puter.com/v2/"></script>
<style>
/* Prevent FOUC */
html { background: #1a1a2e; }
body { margin: 0; opacity: 0; transition: opacity 0.2s; }
body.loaded { opacity: 1; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
// Show body when app loads
window.addEventListener('DOMContentLoaded', () => {
document.body.classList.add('loaded');
});
</script>
</body>
</html>
Loading