This view is limited to 50 files because it contains too many changes.  See the raw diff here.
Files changed (50) hide show
  1. .env.example +11 -0
  2. .gitignore +23 -38
  3. Dockerfile +5 -2
  4. Jornal Oliveira +93 -0
  5. MCP-SERVER.md +0 -428
  6. README.md +6 -15
  7. app/(public)/layout.tsx +0 -15
  8. app/(public)/page.tsx +0 -5
  9. app/[namespace]/[repoId]/page.tsx +0 -28
  10. app/actions/auth.ts +0 -18
  11. app/actions/projects.ts +0 -47
  12. app/api/ask/route.ts +0 -393
  13. app/api/auth/login-url/route.ts +0 -21
  14. app/api/auth/logout/route.ts +0 -25
  15. app/api/auth/route.ts +0 -86
  16. app/api/mcp/route.ts +0 -435
  17. app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/promote/route.ts +0 -230
  18. app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/route.ts +0 -102
  19. app/api/me/projects/[namespace]/[repoId]/download/route.ts +0 -105
  20. app/api/me/projects/[namespace]/[repoId]/images/route.ts +0 -123
  21. app/api/me/projects/[namespace]/[repoId]/route.ts +0 -197
  22. app/api/me/projects/[namespace]/[repoId]/save/route.ts +0 -72
  23. app/api/me/projects/[namespace]/[repoId]/update/route.ts +0 -141
  24. app/api/me/projects/route.ts +0 -121
  25. app/api/me/route.ts +0 -46
  26. app/api/re-design/route.ts +0 -71
  27. app/auth/callback/page.tsx +0 -97
  28. app/auth/page.tsx +0 -28
  29. app/favicon.ico +0 -0
  30. app/layout.tsx +0 -145
  31. app/new/page.tsx +0 -14
  32. app/sitemap.ts +0 -28
  33. assets/deepseek.svg +0 -1
  34. assets/globals.css +0 -380
  35. assets/kimi.svg +0 -1
  36. assets/logo.svg +0 -316
  37. assets/minimax.svg +0 -1
  38. assets/qwen.svg +0 -1
  39. assets/zai.svg +0 -13
  40. components.json +0 -21
  41. components/animated-blobs/index.tsx +0 -34
  42. components/animated-text/index.tsx +0 -123
  43. components/contexts/app-context.tsx +0 -52
  44. components/contexts/login-context.tsx +0 -62
  45. components/contexts/pro-context.tsx +0 -48
  46. components/contexts/tanstack-query-context.tsx +0 -31
  47. components/contexts/user-context.tsx +0 -8
  48. components/discord-promo-modal/index.tsx +0 -225
  49. components/editor/ask-ai/context.tsx +0 -128
  50. components/editor/ask-ai/fake-ask.tsx +0 -97
.env.example ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ OAUTH_CLIENT_ID=
2
+ OAUTH_CLIENT_SECRET=
3
+ APP_PORT=5173
4
+ REDIRECT_URI=http://localhost:5173/auth/login
5
+ DEFAULT_HF_TOKEN=
6
+
7
+ # Optional
8
+ # By setting this variable, you will bypass the login page + the free requests
9
+ # and will use the token directly.
10
+ # This is useful for testing purposes or local use.
11
+ HF_TOKEN=
.gitignore CHANGED
@@ -1,41 +1,26 @@
1
- # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
-
3
- # dependencies
4
- /node_modules
5
- /.pnp
6
- .pnp.*
7
- .yarn/*
8
- !.yarn/patches
9
- !.yarn/plugins
10
- !.yarn/releases
11
- !.yarn/versions
12
-
13
- # testing
14
- /coverage
15
-
16
- # next.js
17
- /.next/
18
- /out/
19
-
20
- # production
21
- /build
22
-
23
- # misc
24
- .DS_Store
25
- *.pem
26
-
27
- # debug
28
  npm-debug.log*
29
  yarn-debug.log*
30
  yarn-error.log*
31
- .pnpm-debug.log*
32
-
33
- # env files (can opt-in for committing if needed)
34
- .env*
35
-
36
- # vercel
37
- .vercel
38
-
39
- # typescript
40
- *.tsbuildinfo
41
- next-env.d.ts
 
 
 
 
 
 
 
 
 
 
1
+ # Logs
2
+ logs
3
+ *.log
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  npm-debug.log*
5
  yarn-debug.log*
6
  yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist
12
+ dist-ssr
13
+ *.local
14
+
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .DS_Store
20
+ *.suo
21
+ *.ntvs*
22
+ *.njsproj
23
+ *.sln
24
+ *.sw?
25
+ .env
26
+ .aider*
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
- FROM node:20-alpine
 
 
2
  USER root
3
 
 
4
  USER 1000
5
  WORKDIR /usr/src/app
6
  # Copy package.json and package-lock.json to the container
@@ -13,7 +16,7 @@ RUN npm install
13
  RUN npm run build
14
 
15
  # Expose the application port (assuming your app runs on port 3000)
16
- EXPOSE 3000
17
 
18
  # Start the application
19
  CMD ["npm", "start"]
 
1
+ # Dockerfile
2
+ # Use an official Node.js runtime as the base image
3
+ FROM node:22.1.0
4
  USER root
5
 
6
+ RUN apt-get update
7
  USER 1000
8
  WORKDIR /usr/src/app
9
  # Copy package.json and package-lock.json to the container
 
16
  RUN npm run build
17
 
18
  # Expose the application port (assuming your app runs on port 3000)
19
+ EXPOSE 5173
20
 
21
  # Start the application
22
  CMD ["npm", "start"]
Jornal Oliveira ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html><html lang="pt-br">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <title>Jornal Oliveira</title>
6
+ <style>
7
+ body { font-family: Arial, sans-serif; margin: 20px; background: #f9f9f9; }
8
+ header, footer { background: #003366; color: white; padding: 10px; text-align: center; }
9
+ h1, h2 { color: #003366; }
10
+ .categoria, .banco-materias, .formulario, .instagram { margin: 20px 0; }
11
+ .formulario input, .formulario select, .formulario textarea { display: block; margin: 10px 0; width: 100%; padding: 8px; }
12
+ .formulario button { padding: 10px 20px; background: #003366; color: white; border: none; cursor: pointer; }
13
+ .materia { background: white; padding: 10px; border: 1px solid #ccc; margin-top: 10px; }
14
+ .oculto { display: none; }
15
+ </style>
16
+ </head>
17
+ <body>
18
+ <header>
19
+ <h1>Jornal Oliveira</h1>
20
+ <p>O Jornal da Escola Fala Sobre Você!</p>
21
+ </header> <section>
22
+ <h2>Sobre o Jornal</h2>
23
+ <p>No Jornal da Escola, destacamos os projetos dos alunos, suas conquistas, suas ideias e tudo o que acontece no nosso dia a dia. Aqui, cada estudante tem vez e voz!</p>
24
+ <ul>
25
+ <li>Entrevistas Exclusivas</li>
26
+ <li>Opiniões de Estudantes</li>
27
+ <li>Cultura & Arte</li>
28
+ <li>Esportes</li>
29
+ <li>Humor</li>
30
+ <li>Você Sabia?</li>
31
+ <li>Projetos e Grêmios</li>
32
+ <li>Investigação</li>
33
+ <li>Lá Fora</li>
34
+ <li>Notícias da Escola</li>
35
+ </ul>
36
+ </section> <section class="formulario">
37
+ <h2>Envie sua Matéria</h2>
38
+ <input type="text" id="autor" placeholder="Seu nome">
39
+ <select id="categoria">
40
+ <option value="Entrevistas">Entrevistas</option>
41
+ <option value="Opinião">Opinião</option>
42
+ <option value="Cultura e Arte">Cultura e Arte</option>
43
+ <option value="Esportes">Esportes</option>
44
+ <option value="Humor">Humor</option>
45
+ <option value="Você Sabia?">Você Sabia?</option>
46
+ <option value="Projetos e Grêmios">Projetos e Grêmios</option>
47
+ <option value="Investigação">Investigação</option>
48
+ <option value="Lá Fora">Lá Fora</option>
49
+ <option value="Notícias da Escola">Notícias da Escola</option>
50
+ </select>
51
+ <textarea id="conteudo" rows="5" placeholder="Escreva sua matéria aqui..."></textarea>
52
+ <button onclick="adicionarMateria()">Enviar</button>
53
+ </section> <section class="banco-materias">
54
+ <h2>Banco de Matérias (Acesso Restrito)</h2>
55
+ <input type="password" id="senha" placeholder="Digite a senha">
56
+ <button onclick="verificarSenha()">Acessar</button>
57
+ <div id="listaMaterias" class="oculto"></div>
58
+ </section> <section class="instagram">
59
+ <h2>Siga no Instagram</h2>
60
+ <a href="https://www.instagram.com/jornal_oliveira?igsh=MW1nZGp4Zmw2YWNnbQ==" target="_blank">@jornal_oliveira</a>
61
+ </section> <footer>
62
+ <p>Feito por alunos, para alunos. Jornal Oliveira © 2025</p>
63
+ </footer> <script>
64
+ const materias = [];
65
+
66
+ function adicionarMateria() {
67
+ const autor = document.getElementById('autor').value;
68
+ const categoria = document.getElementById('categoria').value;
69
+ const conteudo = document.getElementById('conteudo').value;
70
+ if (autor && categoria && conteudo) {
71
+ materias.push({ autor, categoria, conteudo });
72
+ alert("Matéria enviada com sucesso!");
73
+ document.getElementById('autor').value = '';
74
+ document.getElementById('conteudo').value = '';
75
+ } else {
76
+ alert("Preencha todos os campos.");
77
+ }
78
+ }
79
+
80
+ function verificarSenha() {
81
+ const senha = document.getElementById('senha').value;
82
+ if (senha === "1903") {
83
+ const lista = document.getElementById('listaMaterias');
84
+ lista.innerHTML = '<h3>Matérias Publicadas</h3>' + materias.map(m =>
85
+ `<div class='materia'><strong>${m.categoria}</strong><br><em>${m.autor}</em><p>${m.conteudo}</p></div>`
86
+ ).join('');
87
+ lista.classList.remove('oculto');
88
+ } else {
89
+ alert("Senha incorreta!");
90
+ }
91
+ }
92
+ </script></body>
93
+ </html>
MCP-SERVER.md DELETED
@@ -1,428 +0,0 @@
1
- # DeepSite MCP Server
2
-
3
- DeepSite is now available as an MCP (Model Context Protocol) server, enabling AI assistants like Claude to create websites directly using natural language.
4
-
5
- ## Two Ways to Use DeepSite MCP
6
-
7
- **Quick Comparison:**
8
-
9
- | Feature | Option 1: HTTP Server | Option 2: Local Server |
10
- |---------|----------------------|------------------------|
11
- | **Setup Difficulty** | ✅ Easy (just config) | ⚠️ Requires installation |
12
- | **Authentication** | HF Token in config header | HF Token or session cookie in env |
13
- | **Best For** | Most users | Developers, custom modifications |
14
- | **Maintenance** | ✅ Always up-to-date | Need to rebuild for updates |
15
-
16
- **Recommendation:** Use Option 1 (HTTP Server) unless you need to modify the MCP server code.
17
-
18
- ---
19
-
20
- ### 🌐 Option 1: HTTP Server (Recommended)
21
-
22
- **No installation required!** Use DeepSite's hosted MCP server.
23
-
24
- #### Setup for Claude Desktop
25
-
26
- Add to your Claude Desktop configuration file:
27
-
28
- **MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
29
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
30
-
31
- ```json
32
- {
33
- "mcpServers": {
34
- "deepsite": {
35
- "url": "https://huggingface.co/deepsite/api/mcp",
36
- "transport": {
37
- "type": "sse"
38
- },
39
- "headers": {
40
- "Authorization": "Bearer hf_your_token_here"
41
- }
42
- }
43
- }
44
- }
45
- ```
46
-
47
- **Getting Your Hugging Face Token:**
48
-
49
- 1. Go to https://huggingface.co/settings/tokens
50
- 2. Create a new token with `write` access
51
- 3. Copy the token
52
- 4. Add it to the `Authorization` header in your config (recommended for security)
53
- 5. Alternatively, you can pass it as the `hf_token` parameter when using the tool
54
-
55
- **⚠️ Security Recommendation:** Use the `Authorization` header in your config instead of passing the token in chat. This keeps your token secure and out of conversation history.
56
-
57
- #### Example Usage with Claude
58
-
59
- > "Create a portfolio website using DeepSite. Include a hero section, about section, and contact form."
60
-
61
- Claude will automatically:
62
- 1. Use the `create_project` tool
63
- 2. Authenticate using the token from your config
64
- 3. Create the website on Hugging Face Spaces
65
- 4. Return the URLs to access your new site
66
-
67
- ---
68
-
69
- ### 💻 Option 2: Local Server
70
-
71
- Run the MCP server locally for more control or offline use.
72
-
73
- > **Note:** Most users should use Option 1 (HTTP Server) instead. Option 2 is only needed if you want to run the MCP server locally or modify its behavior.
74
-
75
- #### Installation
76
-
77
- ```bash
78
- cd mcp-server
79
- npm install
80
- npm run build
81
- ```
82
-
83
- #### Setup for Claude Desktop
84
-
85
- **Method A: Using HF Token (Recommended)**
86
-
87
- ```json
88
- {
89
- "mcpServers": {
90
- "deepsite-local": {
91
- "command": "node",
92
- "args": ["/absolute/path/to/deepsite-v3/mcp-server/dist/index.js"],
93
- "env": {
94
- "HF_TOKEN": "hf_your_token_here",
95
- "DEEPSITE_API_URL": "https://huggingface.co/deepsite"
96
- }
97
- }
98
- }
99
- }
100
- ```
101
-
102
- **Method B: Using Session Cookie (Alternative)**
103
-
104
- ```json
105
- {
106
- "mcpServers": {
107
- "deepsite-local": {
108
- "command": "node",
109
- "args": ["/absolute/path/to/deepsite-v3/mcp-server/dist/index.js"],
110
- "env": {
111
- "DEEPSITE_AUTH_COOKIE": "your-session-cookie",
112
- "DEEPSITE_API_URL": "https://huggingface.co/deepsite"
113
- }
114
- }
115
- }
116
- }
117
- ```
118
-
119
- **Getting Your Session Cookie (Method B only):**
120
-
121
- 1. Log in to https://huggingface.co/deepsite
122
- 2. Open Developer Tools (F12)
123
- 3. Go to Application → Cookies
124
- 4. Copy the session cookie value
125
- 5. Set as `DEEPSITE_AUTH_COOKIE` in the config
126
-
127
- ---
128
-
129
- ## Available Tools
130
-
131
- ### `create_project`
132
-
133
- Creates a new DeepSite project with HTML/CSS/JS files.
134
-
135
- **Parameters:**
136
-
137
- | Parameter | Type | Required | Description |
138
- |-----------|------|----------|-------------|
139
- | `title` | string | No | Project title (defaults to "DeepSite Project") |
140
- | `pages` | array | Yes | Array of file objects with `path` and `html` |
141
- | `prompt` | string | No | Commit message/description |
142
- | `hf_token` | string | No* | Hugging Face API token (*optional if provided via Authorization header in config) |
143
-
144
- **Page Object:**
145
- ```typescript
146
- {
147
- path: string; // e.g., "index.html", "styles.css", "script.js"
148
- html: string; // File content
149
- }
150
- ```
151
-
152
- **Returns:**
153
- ```json
154
- {
155
- "success": true,
156
- "message": "Project created successfully!",
157
- "projectUrl": "https://huggingface.co/deepsite/username/project-name",
158
- "spaceUrl": "https://huggingface.co/spaces/username/project-name",
159
- "liveUrl": "https://username-project-name.hf.space",
160
- "spaceId": "username/project-name",
161
- "projectId": "space-id",
162
- "files": ["index.html", "styles.css"]
163
- }
164
- ```
165
-
166
- ---
167
-
168
- ## Example Prompts for Claude
169
-
170
- ### Simple Landing Page
171
- > "Create a modern landing page for my SaaS product using DeepSite. Include a hero section with CTA, features grid, and footer. Use gradient background."
172
-
173
- ### Portfolio Website
174
- > "Build a portfolio website with DeepSite. I need:
175
- > - Hero section with my name and photo
176
- > - Projects gallery with 3 sample projects
177
- > - Skills section with tech stack
178
- > - Contact form
179
- > Use dark mode with accent colors."
180
-
181
- ### Blog Homepage
182
- > "Create a blog homepage using DeepSite. Include:
183
- > - Header with navigation
184
- > - Featured post section
185
- > - Grid of recent posts (3 cards)
186
- > - Sidebar with categories
187
- > - Footer with social links
188
- > Clean, minimal design."
189
-
190
- ### Interactive Dashboard
191
- > "Make an analytics dashboard with DeepSite:
192
- > - Sidebar navigation
193
- > - 4 metric cards at top
194
- > - 2 chart placeholders
195
- > - Data table
196
- > - Modern, professional UI with charts.css"
197
-
198
- ---
199
-
200
- ## Direct API Usage
201
-
202
- You can also call the HTTP endpoint directly:
203
-
204
- ### Using Authorization Header (Recommended)
205
-
206
- ```bash
207
- curl -X POST https://huggingface.co/deepsite/api/mcp \
208
- -H "Content-Type: application/json" \
209
- -H "Authorization: Bearer hf_your_token_here" \
210
- -d '{
211
- "jsonrpc": "2.0",
212
- "id": 1,
213
- "method": "tools/call",
214
- "params": {
215
- "name": "create_project",
216
- "arguments": {
217
- "title": "My Website",
218
- "pages": [
219
- {
220
- "path": "index.html",
221
- "html": "<!DOCTYPE html><html><head><title>Hello</title></head><body><h1>Hello World!</h1></body></html>"
222
- }
223
- ]
224
- }
225
- }
226
- }'
227
- ```
228
-
229
- ### Using Token Parameter (Fallback)
230
-
231
- ```bash
232
- curl -X POST https://huggingface.co/deepsite/api/mcp \
233
- -H "Content-Type: application/json" \
234
- -d '{
235
- "jsonrpc": "2.0",
236
- "id": 1,
237
- "method": "tools/call",
238
- "params": {
239
- "name": "create_project",
240
- "arguments": {
241
- "title": "My Website",
242
- "pages": [
243
- {
244
- "path": "index.html",
245
- "html": "<!DOCTYPE html><html><head><title>Hello</title></head><body><h1>Hello World!</h1></body></html>"
246
- }
247
- ],
248
- "hf_token": "hf_xxxxx"
249
- }
250
- }
251
- }'
252
- ```
253
-
254
- ### List Available Tools
255
-
256
- ```bash
257
- curl -X POST https://huggingface.co/deepsite/api/mcp \
258
- -H "Content-Type: application/json" \
259
- -d '{
260
- "jsonrpc": "2.0",
261
- "id": 1,
262
- "method": "tools/list",
263
- "params": {}
264
- }'
265
- ```
266
-
267
- ---
268
-
269
- ## Testing
270
-
271
- ### Test Local Server
272
-
273
- ```bash
274
- cd mcp-server
275
- ./test.sh
276
- ```
277
-
278
- ### Test HTTP Server
279
-
280
- ```bash
281
- curl -X POST https://huggingface.co/deepsite/api/mcp \
282
- -H "Content-Type: application/json" \
283
- -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
284
- ```
285
-
286
- ---
287
-
288
- ## Migration Guide: From Parameter to Header Auth
289
-
290
- If you're currently passing the token as a parameter in your prompts, here's how to migrate to the more secure header-based authentication:
291
-
292
- ### Step 1: Update Your Config
293
-
294
- Edit your Claude Desktop config file and add the `headers` section:
295
-
296
- ```json
297
- {
298
- "mcpServers": {
299
- "deepsite": {
300
- "url": "https://huggingface.co/deepsite/api/mcp",
301
- "transport": {
302
- "type": "sse"
303
- },
304
- "headers": {
305
- "Authorization": "Bearer hf_your_actual_token_here"
306
- }
307
- }
308
- }
309
- }
310
- ```
311
-
312
- ### Step 2: Restart Claude Desktop
313
-
314
- Completely quit and restart Claude Desktop for the changes to take effect.
315
-
316
- ### Step 3: Use Simpler Prompts
317
-
318
- Now you can simply say:
319
- > "Create a portfolio website with DeepSite"
320
-
321
- Instead of:
322
- > "Create a portfolio website with DeepSite using token `hf_xxxxx`"
323
-
324
- Your token is automatically included in all requests via the header!
325
-
326
- ---
327
-
328
- ## Security Notes
329
-
330
- ### HTTP Server (Option 1)
331
- - **✅ Recommended:** Store your HF token in the `Authorization` header in your Claude Desktop config
332
- - The token is stored locally on your machine and never exposed in chat
333
- - The token is sent with each request but only used to authenticate with Hugging Face API
334
- - DeepSite does not store your token
335
- - Use tokens with minimal required permissions (write access to spaces)
336
- - You can revoke tokens anytime at https://huggingface.co/settings/tokens
337
- - **⚠️ Fallback:** You can still pass the token as a parameter, but this is less secure as it appears in conversation history
338
-
339
- ### Local Server (Option 2)
340
- - Use `HF_TOKEN` environment variable (same security as Option 1)
341
- - Or use `DEEPSITE_AUTH_COOKIE` if you prefer session-based auth
342
- - All authentication data stays on your local machine
343
- - Better for development and testing
344
- - No need for both HTTP Server and Local Server - choose one!
345
-
346
- ---
347
-
348
- ## Troubleshooting
349
-
350
- ### "Invalid Hugging Face token"
351
- - Verify your token at https://huggingface.co/settings/tokens
352
- - Ensure the token has write permissions
353
- - Check that you copied the full token (starts with `hf_`)
354
-
355
- ### "At least one page is required"
356
- - Make sure you're providing the `pages` array
357
- - Each page must have both `path` and `html` properties
358
-
359
- ### "Failed to create project"
360
- - Check your token permissions
361
- - Ensure the project title doesn't conflict with existing spaces
362
- - Verify your Hugging Face account is in good standing
363
-
364
- ### Claude doesn't see the tool
365
- - Restart Claude Desktop after modifying the config
366
- - Check that the JSON config is valid (no trailing commas)
367
- - For HTTP: verify the URL is correct
368
- - For local: check the absolute path to index.js
369
-
370
- ---
371
-
372
- ## Architecture
373
-
374
- ### HTTP Server Flow
375
- ```
376
- Claude Desktop
377
-
378
- (HTTP Request)
379
-
380
- huggingface.co/deepsite/api/mcp
381
-
382
- Hugging Face API (with user's token)
383
-
384
- New Space Created
385
-
386
- URLs returned to Claude
387
- ```
388
-
389
- ### Local Server Flow
390
- ```
391
- Claude Desktop
392
-
393
- (stdio transport)
394
-
395
- Local MCP Server
396
-
397
- (HTTP to DeepSite API)
398
-
399
- huggingface.co/deepsite/api/me/projects
400
-
401
- New Space Created
402
- ```
403
-
404
- ---
405
-
406
- ## Contributing
407
-
408
- The MCP server implementation lives in:
409
- - HTTP Server: `/app/api/mcp/route.ts`
410
- - Local Server: `/mcp-server/index.ts`
411
-
412
- Both use the same core DeepSite logic for creating projects - no duplication!
413
-
414
- ---
415
-
416
- ## License
417
-
418
- MIT
419
-
420
- ---
421
-
422
- ## Resources
423
-
424
- - [Model Context Protocol Spec](https://modelcontextprotocol.io/)
425
- - [DeepSite Documentation](https://huggingface.co/deepsite)
426
- - [Hugging Face Spaces](https://huggingface.co/docs/hub/spaces)
427
- - [Claude Desktop](https://claude.ai/desktop)
428
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md CHANGED
@@ -1,28 +1,19 @@
1
  ---
2
- title: DeepSite v3
3
  emoji: 🐳
4
  colorFrom: blue
5
  colorTo: blue
6
  sdk: docker
7
  pinned: true
8
- app_port: 3000
9
  license: mit
10
- failure_strategy: rollback
11
- short_description: Generate any application by Vibe Coding
12
  models:
13
  - deepseek-ai/DeepSeek-V3-0324
14
- - deepseek-ai/DeepSeek-R1-0528
15
- - deepseek-ai/DeepSeek-V3.1
16
- - deepseek-ai/DeepSeek-V3.1-Terminus
17
- - deepseek-ai/DeepSeek-V3.2-Exp
18
- - Qwen/Qwen3-Coder-480B-A35B-Instruct
19
- - moonshotai/Kimi-K2-Instruct
20
- - moonshotai/Kimi-K2-Instruct-0905
21
- - zai-org/GLM-4.6
22
- - MiniMaxAI/MiniMax-M2
23
- - moonshotai/Kimi-K2-Thinking
24
  ---
25
 
26
  # DeepSite 🐳
 
27
 
28
- DeepSite is a Vibe Coding Platform designed to make coding smarter and more efficient. Tailored for developers, data scientists, and AI engineers, it integrates generative AI into your coding projects to enhance creativity and productivity.
 
 
1
  ---
2
+ title: DeepSite
3
  emoji: 🐳
4
  colorFrom: blue
5
  colorTo: blue
6
  sdk: docker
7
  pinned: true
8
+ app_port: 5173
9
  license: mit
10
+ short_description: Generate any application with DeepSeek
 
11
  models:
12
  - deepseek-ai/DeepSeek-V3-0324
 
 
 
 
 
 
 
 
 
 
13
  ---
14
 
15
  # DeepSite 🐳
16
+ DeepSite is a coding platform powered by DeepSeek AI, designed to make coding smarter and more efficient. Tailored for developers, data scientists, and AI engineers, it integrates generative AI into your coding projects to enhance creativity and productivity.
17
 
18
+ ## How to use it locally
19
+ Follow [this discussion](https://huggingface.co/spaces/enzostvs/deepsite/discussions/74)
app/(public)/layout.tsx DELETED
@@ -1,15 +0,0 @@
1
- import Navigation from "@/components/public/navigation";
2
-
3
- export default async function PublicLayout({
4
- children,
5
- }: Readonly<{
6
- children: React.ReactNode;
7
- }>) {
8
- return (
9
- <div className="h-screen bg-neutral-950 z-1 relative overflow-auto scroll-smooth">
10
- <div className="background__noisy" />
11
- <Navigation />
12
- {children}
13
- </div>
14
- );
15
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/(public)/page.tsx DELETED
@@ -1,5 +0,0 @@
1
- import { MyProjects } from "@/components/my-projects";
2
-
3
- export default async function HomePage() {
4
- return <MyProjects />;
5
- }
 
 
 
 
 
 
app/[namespace]/[repoId]/page.tsx DELETED
@@ -1,28 +0,0 @@
1
- import { AppEditor } from "@/components/editor";
2
- import { generateSEO } from "@/lib/seo";
3
- import { Metadata } from "next";
4
-
5
- export async function generateMetadata({
6
- params,
7
- }: {
8
- params: Promise<{ namespace: string; repoId: string }>;
9
- }): Promise<Metadata> {
10
- const { namespace, repoId } = await params;
11
-
12
- return generateSEO({
13
- title: `${namespace}/${repoId} - DeepSite Editor`,
14
- description: `Edit and build ${namespace}/${repoId} with AI-powered tools on DeepSite. Create stunning websites with no code required.`,
15
- path: `/${namespace}/${repoId}`,
16
- // Prevent indexing of individual project editor pages if they contain sensitive content
17
- noIndex: false, // Set to true if you want to keep project pages private
18
- });
19
- }
20
-
21
- export default async function ProjectNamespacePage({
22
- params,
23
- }: {
24
- params: Promise<{ namespace: string; repoId: string }>;
25
- }) {
26
- const { namespace, repoId } = await params;
27
- return <AppEditor namespace={namespace} repoId={repoId} />;
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/actions/auth.ts DELETED
@@ -1,18 +0,0 @@
1
- "use server";
2
-
3
- import { headers } from "next/headers";
4
-
5
- export async function getAuth() {
6
- const authList = await headers();
7
- const host = authList.get("host") ?? "localhost:3000";
8
- const url = host.includes("/spaces/enzostvs")
9
- ? "enzostvs-deepsite.hf.space"
10
- : host;
11
- const redirect_uri =
12
- `${host.includes("localhost") ? "http://" : "https://"}` +
13
- url +
14
- "/deepsite/auth/callback";
15
-
16
- const loginRedirectUrl = `https://huggingface.co/oauth/authorize?client_id=${process.env.OAUTH_CLIENT_ID}&redirect_uri=${redirect_uri}&response_type=code&scope=openid%20profile%20write-repos%20manage-repos%20inference-api&prompt=consent&state=1234567890`;
17
- return loginRedirectUrl;
18
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/actions/projects.ts DELETED
@@ -1,47 +0,0 @@
1
- "use server";
2
-
3
- import { isAuthenticated } from "@/lib/auth";
4
- import { NextResponse } from "next/server";
5
- import { listSpaces } from "@huggingface/hub";
6
- import { ProjectType } from "@/types";
7
-
8
- export async function getProjects(): Promise<{
9
- ok: boolean;
10
- projects: ProjectType[];
11
- isEmpty?: boolean;
12
- }> {
13
- const user = await isAuthenticated();
14
-
15
- if (user instanceof NextResponse || !user) {
16
- return {
17
- ok: false,
18
- projects: [],
19
- };
20
- }
21
-
22
- const projects = [];
23
- for await (const space of listSpaces({
24
- accessToken: user.token as string,
25
- additionalFields: ["author", "cardData"],
26
- search: {
27
- owner: user.name,
28
- }
29
- })) {
30
- if (
31
- !space.private &&
32
- space.sdk === "static" &&
33
- Array.isArray((space.cardData as { tags?: string[] })?.tags) &&
34
- (
35
- ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite-v3")) ||
36
- ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite"))
37
- )
38
- ) {
39
- projects.push(space);
40
- }
41
- }
42
-
43
- return {
44
- ok: true,
45
- projects,
46
- };
47
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/ask/route.ts DELETED
@@ -1,393 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import type { NextRequest } from "next/server";
3
- import { NextResponse } from "next/server";
4
- import { headers } from "next/headers";
5
- import { InferenceClient } from "@huggingface/inference";
6
-
7
- import { MODELS } from "@/lib/providers";
8
- import {
9
- FOLLOW_UP_SYSTEM_PROMPT,
10
- FOLLOW_UP_SYSTEM_PROMPT_LIGHT,
11
- INITIAL_SYSTEM_PROMPT,
12
- INITIAL_SYSTEM_PROMPT_LIGHT,
13
- MAX_REQUESTS_PER_IP,
14
- PROMPT_FOR_PROJECT_NAME,
15
- } from "@/lib/prompts";
16
- import MY_TOKEN_KEY from "@/lib/get-cookie-name";
17
- import { Page } from "@/types";
18
- import { isAuthenticated } from "@/lib/auth";
19
- import { getBestProvider } from "@/lib/best-provider";
20
-
21
- const ipAddresses = new Map();
22
-
23
- export async function POST(request: NextRequest) {
24
- const authHeaders = await headers();
25
- const tokenInHeaders = authHeaders.get("Authorization");
26
- const userToken = tokenInHeaders ? tokenInHeaders.replace("Bearer ", "") : request.cookies.get(MY_TOKEN_KEY())?.value;
27
-
28
- const body = await request.json();
29
- const { prompt, provider, model, redesignMarkdown, enhancedSettings, pages } = body;
30
-
31
- if (!model || (!prompt && !redesignMarkdown)) {
32
- return NextResponse.json(
33
- { ok: false, error: "Missing required fields" },
34
- { status: 400 }
35
- );
36
- }
37
-
38
- const selectedModel = MODELS.find(
39
- (m) => m.value === model || m.label === model
40
- );
41
-
42
- if (!selectedModel) {
43
- return NextResponse.json(
44
- { ok: false, error: "Invalid model selected" },
45
- { status: 400 }
46
- );
47
- }
48
-
49
- let token: string | null = null;
50
- if (userToken) token = userToken;
51
- let billTo: string | null = null;
52
-
53
- /**
54
- * Handle local usage token, this bypass the need for a user token
55
- * and allows local testing without authentication.
56
- * This is useful for development and testing purposes.
57
- */
58
- if (process.env.HF_TOKEN && process.env.HF_TOKEN.length > 0) {
59
- token = process.env.HF_TOKEN;
60
- }
61
-
62
- const ip = authHeaders.get("x-forwarded-for")?.includes(",")
63
- ? authHeaders.get("x-forwarded-for")?.split(",")[1].trim()
64
- : authHeaders.get("x-forwarded-for");
65
-
66
- if (!token || token === "null" || token === "") {
67
- ipAddresses.set(ip, (ipAddresses.get(ip) || 0) + 1);
68
- if (ipAddresses.get(ip) > MAX_REQUESTS_PER_IP) {
69
- return NextResponse.json(
70
- {
71
- ok: false,
72
- openLogin: true,
73
- message: "Log In to continue using the service",
74
- },
75
- { status: 429 }
76
- );
77
- }
78
-
79
- token = process.env.DEFAULT_HF_TOKEN as string;
80
- billTo = "huggingface";
81
- }
82
-
83
- try {
84
- const encoder = new TextEncoder();
85
- const stream = new TransformStream();
86
- const writer = stream.writable.getWriter();
87
-
88
- const response = new NextResponse(stream.readable, {
89
- headers: {
90
- "Content-Type": "text/plain; charset=utf-8",
91
- "Cache-Control": "no-cache",
92
- Connection: "keep-alive",
93
- },
94
- });
95
-
96
- (async () => {
97
- try {
98
- const client = new InferenceClient(token);
99
-
100
- const systemPrompt = selectedModel.value.includes('MiniMax')
101
- ? INITIAL_SYSTEM_PROMPT_LIGHT
102
- : INITIAL_SYSTEM_PROMPT;
103
-
104
- const userPrompt = prompt;
105
-
106
- const chatCompletion = client.chatCompletionStream(
107
- {
108
- model: selectedModel.value + (provider !== "auto" ? `:${provider}` : ""),
109
- messages: [
110
- {
111
- role: "system",
112
- content: systemPrompt,
113
- },
114
- ...(redesignMarkdown ? [{
115
- role: "assistant",
116
- content: `User will ask you to redesign the site based on this markdown. Use the same images as the site, but you can improve the content and the design. Here is the markdown: ${redesignMarkdown}`
117
- }] : []),
118
- {
119
- role: "user",
120
- content: userPrompt + (enhancedSettings.isActive ? `1. I want to use the following primary color: ${enhancedSettings.primaryColor} (eg: bg-${enhancedSettings.primaryColor}-500).
121
- 2. I want to use the following secondary color: ${enhancedSettings.secondaryColor} (eg: bg-${enhancedSettings.secondaryColor}-500).
122
- 3. I want to use the following theme: ${enhancedSettings.theme} mode.` : "")
123
- },
124
- ],
125
- ...(selectedModel.top_k ? { top_k: selectedModel.top_k } : {}),
126
- ...(selectedModel.temperature ? { temperature: selectedModel.temperature } : {}),
127
- ...(selectedModel.top_p ? { top_p: selectedModel.top_p } : {}),
128
- max_tokens: 32000,
129
- },
130
- billTo ? { billTo } : {}
131
- );
132
-
133
- while (true) {
134
- const { done, value } = await chatCompletion.next()
135
- if (done) {
136
- break;
137
- }
138
-
139
- const chunk = value.choices[0]?.delta?.content;
140
- if (chunk) {
141
- await writer.write(encoder.encode(chunk));
142
- }
143
- }
144
-
145
- await writer.close();
146
- } catch (error: any) {
147
- if (error.message?.includes("exceeded your monthly included credits")) {
148
- await writer.write(
149
- encoder.encode(
150
- JSON.stringify({
151
- ok: false,
152
- openProModal: true,
153
- message: error.message,
154
- })
155
- )
156
- );
157
- } else if (error?.message?.includes("inference provider information")) {
158
- await writer.write(
159
- encoder.encode(
160
- JSON.stringify({
161
- ok: false,
162
- openSelectProvider: true,
163
- message: error.message,
164
- })
165
- )
166
- );
167
- }
168
- else {
169
- await writer.write(
170
- encoder.encode(
171
- JSON.stringify({
172
- ok: false,
173
- message:
174
- error.message ||
175
- "An error occurred while processing your request.",
176
- })
177
- )
178
- );
179
- }
180
- } finally {
181
- try {
182
- await writer?.close();
183
- } catch {
184
- }
185
- }
186
- })();
187
-
188
- return response;
189
- } catch (error: any) {
190
- return NextResponse.json(
191
- {
192
- ok: false,
193
- openSelectProvider: true,
194
- message:
195
- error?.message || "An error occurred while processing your request.",
196
- },
197
- { status: 500 }
198
- );
199
- }
200
- }
201
-
202
- export async function PUT(request: NextRequest) {
203
- const user = await isAuthenticated();
204
- if (user instanceof NextResponse || !user) {
205
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
206
- }
207
-
208
- const authHeaders = await headers();
209
-
210
- const body = await request.json();
211
- const { prompt, provider, selectedElementHtml, model, pages, files, repoId, isNew } =
212
- body;
213
-
214
- if (!prompt || pages.length === 0) {
215
- return NextResponse.json(
216
- { ok: false, error: "Missing required fields" },
217
- { status: 400 }
218
- );
219
- }
220
-
221
- const selectedModel = MODELS.find(
222
- (m) => m.value === model || m.label === model
223
- );
224
- if (!selectedModel) {
225
- return NextResponse.json(
226
- { ok: false, error: "Invalid model selected" },
227
- { status: 400 }
228
- );
229
- }
230
-
231
- let token = user.token as string;
232
- let billTo: string | null = null;
233
-
234
- /**
235
- * Handle local usage token, this bypass the need for a user token
236
- * and allows local testing without authentication.
237
- * This is useful for development and testing purposes.
238
- */
239
- if (process.env.HF_TOKEN && process.env.HF_TOKEN.length > 0) {
240
- token = process.env.HF_TOKEN;
241
- }
242
-
243
- const ip = authHeaders.get("x-forwarded-for")?.includes(",")
244
- ? authHeaders.get("x-forwarded-for")?.split(",")[1].trim()
245
- : authHeaders.get("x-forwarded-for");
246
-
247
- if (!token || token === "null" || token === "") {
248
- ipAddresses.set(ip, (ipAddresses.get(ip) || 0) + 1);
249
- if (ipAddresses.get(ip) > MAX_REQUESTS_PER_IP) {
250
- return NextResponse.json(
251
- {
252
- ok: false,
253
- openLogin: true,
254
- message: "Log In to continue using the service",
255
- },
256
- { status: 429 }
257
- );
258
- }
259
-
260
- token = process.env.DEFAULT_HF_TOKEN as string;
261
- billTo = "huggingface";
262
- }
263
-
264
- try {
265
- const encoder = new TextEncoder();
266
- const stream = new TransformStream();
267
- const writer = stream.writable.getWriter();
268
-
269
- const response = new NextResponse(stream.readable, {
270
- headers: {
271
- "Content-Type": "text/plain; charset=utf-8",
272
- "Cache-Control": "no-cache",
273
- Connection: "keep-alive",
274
- },
275
- });
276
-
277
- (async () => {
278
- try {
279
- const client = new InferenceClient(token);
280
-
281
- const basePrompt = selectedModel.value.includes('MiniMax')
282
- ? FOLLOW_UP_SYSTEM_PROMPT_LIGHT
283
- : FOLLOW_UP_SYSTEM_PROMPT;
284
- const systemPrompt = basePrompt + (isNew ? PROMPT_FOR_PROJECT_NAME : "");
285
- // const userContext = "You are modifying the HTML file based on the user's request.";
286
-
287
- const allPages = pages || [];
288
- const pagesContext = allPages
289
- .map((p: Page) => `- ${p.path}\n${p.html}`)
290
- .join("\n\n");
291
-
292
- const assistantContext = `${selectedElementHtml
293
- ? `\n\nYou have to update ONLY the following element, NOTHING ELSE: \n\n\`\`\`html\n${selectedElementHtml}\n\`\`\` Could be in multiple pages, if so, update all the pages.`
294
- : ""
295
- }. Current pages (${allPages.length} total): ${pagesContext}. ${files?.length > 0 ? `Available images: ${files?.map((f: string) => f).join(', ')}.` : ""}`;
296
-
297
- const chatCompletion = client.chatCompletionStream(
298
- {
299
- model: selectedModel.value + (provider !== "auto" ? `:${provider}` : ""),
300
- messages: [
301
- {
302
- role: "system",
303
- content: systemPrompt + assistantContext
304
- },
305
- {
306
- role: "user",
307
- content: prompt,
308
- },
309
- ],
310
- ...(selectedModel.top_k ? { top_k: selectedModel.top_k } : {}),
311
- ...(selectedModel.temperature ? { temperature: selectedModel.temperature } : {}),
312
- ...(selectedModel.top_p ? { top_p: selectedModel.top_p } : {}),
313
- max_tokens: 32000,
314
- },
315
- billTo ? { billTo } : {}
316
- );
317
-
318
- // Stream the response chunks to the client
319
- while (true) {
320
- const { done, value } = await chatCompletion.next();
321
- if (done) {
322
- break;
323
- }
324
-
325
- const chunk = value.choices[0]?.delta?.content;
326
- if (chunk) {
327
- await writer.write(encoder.encode(chunk));
328
- }
329
- }
330
-
331
- await writer.write(encoder.encode(`\n___METADATA_START___\n${JSON.stringify({
332
- repoId,
333
- isNew,
334
- userName: user.name,
335
- })}\n___METADATA_END___\n`));
336
-
337
- await writer.close();
338
- } catch (error: any) {
339
- if (error.message?.includes("exceeded your monthly included credits")) {
340
- await writer.write(
341
- encoder.encode(
342
- JSON.stringify({
343
- ok: false,
344
- openProModal: true,
345
- message: error.message,
346
- })
347
- )
348
- );
349
- } else if (error?.message?.includes("inference provider information")) {
350
- await writer.write(
351
- encoder.encode(
352
- JSON.stringify({
353
- ok: false,
354
- openSelectProvider: true,
355
- message: error.message,
356
- })
357
- )
358
- );
359
- } else {
360
- await writer.write(
361
- encoder.encode(
362
- JSON.stringify({
363
- ok: false,
364
- message:
365
- error.message ||
366
- "An error occurred while processing your request.",
367
- })
368
- )
369
- );
370
- }
371
- } finally {
372
- try {
373
- await writer?.close();
374
- } catch {
375
- // ignore
376
- }
377
- }
378
- })();
379
-
380
- return response;
381
- } catch (error: any) {
382
- return NextResponse.json(
383
- {
384
- ok: false,
385
- openSelectProvider: true,
386
- message:
387
- error.message || "An error occurred while processing your request.",
388
- },
389
- { status: 500 }
390
- );
391
- }
392
- }
393
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/auth/login-url/route.ts DELETED
@@ -1,21 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
-
3
- export async function GET(req: NextRequest) {
4
- const host = req.headers.get("host") ?? "localhost:3000";
5
-
6
- let url: string;
7
- if (host.includes("localhost")) {
8
- url = host;
9
- } else {
10
- url = "huggingface.co";
11
- }
12
-
13
- const redirect_uri =
14
- `${host.includes("localhost") ? "http://" : "https://"}` +
15
- url +
16
- "/deepsite/auth/callback";
17
-
18
- const loginRedirectUrl = `https://huggingface.co/oauth/authorize?client_id=${process.env.OAUTH_CLIENT_ID}&redirect_uri=${redirect_uri}&response_type=code&scope=openid%20profile%20write-repos%20manage-repos%20inference-api&prompt=consent&state=1234567890`;
19
-
20
- return NextResponse.json({ loginUrl: loginRedirectUrl });
21
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/auth/logout/route.ts DELETED
@@ -1,25 +0,0 @@
1
- import { NextResponse } from "next/server";
2
- import MY_TOKEN_KEY from "@/lib/get-cookie-name";
3
-
4
- export async function POST() {
5
- const cookieName = MY_TOKEN_KEY();
6
- const isProduction = process.env.NODE_ENV === "production";
7
-
8
- const response = NextResponse.json(
9
- { message: "Logged out successfully" },
10
- { status: 200 }
11
- );
12
-
13
- // Clear the HTTP-only cookie
14
- const cookieOptions = [
15
- `${cookieName}=`,
16
- "Max-Age=0",
17
- "Path=/",
18
- "HttpOnly",
19
- ...(isProduction ? ["Secure", "SameSite=None"] : ["SameSite=Lax"])
20
- ].join("; ");
21
-
22
- response.headers.set("Set-Cookie", cookieOptions);
23
-
24
- return response;
25
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/auth/route.ts DELETED
@@ -1,86 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
-
3
- export async function POST(req: NextRequest) {
4
- const body = await req.json();
5
- const { code } = body;
6
-
7
- if (!code) {
8
- return NextResponse.json(
9
- { error: "Code is required" },
10
- {
11
- status: 400,
12
- headers: {
13
- "Content-Type": "application/json",
14
- },
15
- }
16
- );
17
- }
18
-
19
- const Authorization = `Basic ${Buffer.from(
20
- `${process.env.OAUTH_CLIENT_ID}:${process.env.OAUTH_CLIENT_SECRET}`
21
- ).toString("base64")}`;
22
-
23
- const host =
24
- req.headers.get("host") ?? req.headers.get("origin") ?? "localhost:3000";
25
-
26
- const url = host.includes("/spaces/enzostvs")
27
- ? "huggingface.co/deepsite"
28
- : host;
29
- const redirect_uri =
30
- `${host.includes("localhost") ? "http://" : "https://"}` +
31
- url +
32
- "/deepsite/auth/callback";
33
- const request_auth = await fetch("https://huggingface.co/oauth/token", {
34
- method: "POST",
35
- headers: {
36
- "Content-Type": "application/x-www-form-urlencoded",
37
- Authorization,
38
- },
39
- body: new URLSearchParams({
40
- grant_type: "authorization_code",
41
- code,
42
- redirect_uri,
43
- }),
44
- });
45
-
46
- const response = await request_auth.json();
47
- if (!response.access_token) {
48
- return NextResponse.json(
49
- { error: "Failed to retrieve access token" },
50
- {
51
- status: 400,
52
- headers: {
53
- "Content-Type": "application/json",
54
- },
55
- }
56
- );
57
- }
58
-
59
- const userResponse = await fetch("https://huggingface.co/api/whoami-v2", {
60
- headers: {
61
- Authorization: `Bearer ${response.access_token}`,
62
- },
63
- });
64
-
65
- if (!userResponse.ok) {
66
- return NextResponse.json(
67
- { user: null, errCode: userResponse.status },
68
- { status: userResponse.status }
69
- );
70
- }
71
- const user = await userResponse.json();
72
-
73
- return NextResponse.json(
74
- {
75
- access_token: response.access_token,
76
- expires_in: response.expires_in,
77
- user,
78
- },
79
- {
80
- status: 200,
81
- headers: {
82
- "Content-Type": "application/json",
83
- },
84
- }
85
- );
86
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/mcp/route.ts DELETED
@@ -1,435 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, createRepo, uploadFiles, spaceInfo, listCommits } from "@huggingface/hub";
3
- import { COLORS } from "@/lib/utils";
4
- import { injectDeepSiteBadge, isIndexPage } from "@/lib/inject-badge";
5
- import { Commit, Page } from "@/types";
6
-
7
- // Timeout configuration (in milliseconds)
8
- const OPERATION_TIMEOUT = 120000; // 2 minutes for HF operations
9
-
10
- // Extend the maximum execution time for this route
11
- export const maxDuration = 180; // 3 minutes
12
-
13
- // Utility function to wrap promises with timeout
14
- async function withTimeout<T>(
15
- promise: Promise<T>,
16
- timeoutMs: number,
17
- errorMessage: string = "Operation timed out"
18
- ): Promise<T> {
19
- let timeoutId: NodeJS.Timeout;
20
-
21
- const timeoutPromise = new Promise<never>((_, reject) => {
22
- timeoutId = setTimeout(() => {
23
- reject(new Error(errorMessage));
24
- }, timeoutMs);
25
- });
26
-
27
- try {
28
- const result = await Promise.race([promise, timeoutPromise]);
29
- clearTimeout(timeoutId!);
30
- return result;
31
- } catch (error) {
32
- clearTimeout(timeoutId!);
33
- throw error;
34
- }
35
- }
36
-
37
- interface MCPRequest {
38
- jsonrpc: "2.0";
39
- id: number | string;
40
- method: string;
41
- params?: any;
42
- }
43
-
44
- interface MCPResponse {
45
- jsonrpc: "2.0";
46
- id: number | string;
47
- result?: any;
48
- error?: {
49
- code: number;
50
- message: string;
51
- data?: any;
52
- };
53
- }
54
-
55
- interface CreateProjectParams {
56
- title?: string;
57
- pages: Page[];
58
- prompt?: string;
59
- hf_token?: string; // Optional - can come from header instead
60
- }
61
-
62
- // MCP Server over HTTP
63
- export async function POST(req: NextRequest) {
64
- try {
65
- const body: MCPRequest = await req.json();
66
- const { jsonrpc, id, method, params } = body;
67
-
68
- // Validate JSON-RPC 2.0 format
69
- if (jsonrpc !== "2.0") {
70
- return NextResponse.json({
71
- jsonrpc: "2.0",
72
- id: id || null,
73
- error: {
74
- code: -32600,
75
- message: "Invalid Request: jsonrpc must be '2.0'",
76
- },
77
- });
78
- }
79
-
80
- let response: MCPResponse;
81
-
82
- switch (method) {
83
- case "initialize":
84
- response = {
85
- jsonrpc: "2.0",
86
- id,
87
- result: {
88
- protocolVersion: "2024-11-05",
89
- capabilities: {
90
- tools: {},
91
- },
92
- serverInfo: {
93
- name: "deepsite-mcp-server",
94
- version: "1.0.0",
95
- },
96
- },
97
- };
98
- break;
99
-
100
- case "tools/list":
101
- response = {
102
- jsonrpc: "2.0",
103
- id,
104
- result: {
105
- tools: [
106
- {
107
- name: "create_project",
108
- description: `Create a new DeepSite project. This will create a new Hugging Face Space with your HTML/CSS/JS files.
109
-
110
- Example usage:
111
- - Create a simple website with HTML, CSS, and JavaScript files
112
- - Each page needs a 'path' (filename like "index.html", "styles.css", "script.js") and 'html' (the actual content)
113
- - The title will be formatted to a valid repository name
114
- - Returns the project URL and metadata`,
115
- inputSchema: {
116
- type: "object",
117
- properties: {
118
- title: {
119
- type: "string",
120
- description: "Project title (optional, defaults to 'DeepSite Project'). Will be formatted to a valid repo name.",
121
- },
122
- pages: {
123
- type: "array",
124
- description: "Array of files to include in the project",
125
- items: {
126
- type: "object",
127
- properties: {
128
- path: {
129
- type: "string",
130
- description: "File path (e.g., 'index.html', 'styles.css', 'script.js')",
131
- },
132
- html: {
133
- type: "string",
134
- description: "File content",
135
- },
136
- },
137
- required: ["path", "html"],
138
- },
139
- },
140
- prompt: {
141
- type: "string",
142
- description: "Optional prompt/description for the commit message",
143
- },
144
- hf_token: {
145
- type: "string",
146
- description: "Hugging Face API token (optional if provided via Authorization header)",
147
- },
148
- },
149
- required: ["pages"],
150
- },
151
- },
152
- ],
153
- },
154
- };
155
- break;
156
-
157
- case "tools/call":
158
- const { name, arguments: toolArgs } = params;
159
-
160
- if (name === "create_project") {
161
- try {
162
- // Extract token from Authorization header if present
163
- const authHeader = req.headers.get("authorization");
164
- let hf_token = toolArgs.hf_token;
165
-
166
- if (authHeader && authHeader.startsWith("Bearer ")) {
167
- hf_token = authHeader.substring(7); // Remove "Bearer " prefix
168
- }
169
-
170
- const result = await handleCreateProject({
171
- ...toolArgs,
172
- hf_token,
173
- } as CreateProjectParams);
174
- response = {
175
- jsonrpc: "2.0",
176
- id,
177
- result,
178
- };
179
- } catch (error: any) {
180
- response = {
181
- jsonrpc: "2.0",
182
- id,
183
- error: {
184
- code: -32000,
185
- message: error.message || "Failed to create project",
186
- data: error.data,
187
- },
188
- };
189
- }
190
- } else {
191
- response = {
192
- jsonrpc: "2.0",
193
- id,
194
- error: {
195
- code: -32601,
196
- message: `Unknown tool: ${name}`,
197
- },
198
- };
199
- }
200
- break;
201
-
202
- default:
203
- response = {
204
- jsonrpc: "2.0",
205
- id,
206
- error: {
207
- code: -32601,
208
- message: `Method not found: ${method}`,
209
- },
210
- };
211
- }
212
-
213
- return NextResponse.json(response);
214
- } catch (error: any) {
215
- return NextResponse.json({
216
- jsonrpc: "2.0",
217
- id: null,
218
- error: {
219
- code: -32700,
220
- message: "Parse error",
221
- data: error.message,
222
- },
223
- });
224
- }
225
- }
226
-
227
- // Handle OPTIONS for CORS
228
- export async function OPTIONS() {
229
- return new NextResponse(null, {
230
- status: 200,
231
- headers: {
232
- "Access-Control-Allow-Origin": "*",
233
- "Access-Control-Allow-Methods": "POST, OPTIONS",
234
- "Access-Control-Allow-Headers": "Content-Type",
235
- },
236
- });
237
- }
238
-
239
- async function handleCreateProject(params: CreateProjectParams) {
240
- const { title: titleFromRequest, pages, prompt, hf_token } = params;
241
-
242
- // Validate required parameters
243
- if (!hf_token || typeof hf_token !== "string") {
244
- throw new Error("hf_token is required and must be a string");
245
- }
246
-
247
- if (!pages || !Array.isArray(pages) || pages.length === 0) {
248
- throw new Error("At least one page is required");
249
- }
250
-
251
- // Validate that each page has required fields
252
- for (const page of pages) {
253
- if (!page.path || !page.html) {
254
- throw new Error("Each page must have 'path' and 'html' properties");
255
- }
256
- }
257
-
258
- // Get user info from HF token
259
- let username: string;
260
- try {
261
- const userResponse = await withTimeout(
262
- fetch("https://huggingface.co/api/whoami-v2", {
263
- headers: {
264
- Authorization: `Bearer ${hf_token}`,
265
- },
266
- }),
267
- 30000, // 30 seconds for authentication
268
- "Authentication timeout: Unable to verify Hugging Face token"
269
- );
270
-
271
- if (!userResponse.ok) {
272
- throw new Error("Invalid Hugging Face token");
273
- }
274
-
275
- const userData = await userResponse.json();
276
- username = userData.name;
277
- } catch (error: any) {
278
- if (error.message?.includes('timeout')) {
279
- throw new Error(`Authentication timeout: ${error.message}`);
280
- }
281
- throw new Error(`Authentication failed: ${error.message}`);
282
- }
283
-
284
- const title = titleFromRequest ?? "DeepSite Project";
285
-
286
- const formattedTitle = title
287
- .toLowerCase()
288
- .replace(/[^a-z0-9]+/g, "-")
289
- .split("-")
290
- .filter(Boolean)
291
- .join("-")
292
- .slice(0, 96);
293
-
294
- const repo: RepoDesignation = {
295
- type: "space",
296
- name: `${username}/${formattedTitle}`,
297
- };
298
-
299
- const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
300
- const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
301
- const README = `---
302
- title: ${title}
303
- colorFrom: ${colorFrom}
304
- colorTo: ${colorTo}
305
- emoji: 🐳
306
- sdk: static
307
- pinned: false
308
- tags:
309
- - deepsite-v3
310
- ---
311
-
312
- # Welcome to your new DeepSite project!
313
- This project was created with [DeepSite](https://huggingface.co/deepsite).
314
- `;
315
-
316
- const files: File[] = [];
317
- const readmeFile = new File([README], "README.md", { type: "text/markdown" });
318
- files.push(readmeFile);
319
-
320
- pages.forEach((page: Page) => {
321
- // Determine MIME type based on file extension
322
- let mimeType = "text/html";
323
- if (page.path.endsWith(".css")) {
324
- mimeType = "text/css";
325
- } else if (page.path.endsWith(".js")) {
326
- mimeType = "text/javascript";
327
- } else if (page.path.endsWith(".json")) {
328
- mimeType = "application/json";
329
- }
330
-
331
- // Inject the DeepSite badge script into index pages only
332
- const content = mimeType === "text/html" && isIndexPage(page.path)
333
- ? injectDeepSiteBadge(page.html)
334
- : page.html;
335
- const file = new File([content], page.path, { type: mimeType });
336
- files.push(file);
337
- });
338
-
339
- try {
340
- const { repoUrl } = await withTimeout(
341
- createRepo({
342
- repo,
343
- accessToken: hf_token,
344
- }),
345
- 60000, // 1 minute for repo creation
346
- "Timeout creating repository. Please try again."
347
- );
348
-
349
- const commitTitle = !prompt || prompt.trim() === "" ? "Initial project creation via MCP" : prompt;
350
-
351
- await withTimeout(
352
- uploadFiles({
353
- repo,
354
- files,
355
- accessToken: hf_token,
356
- commitTitle,
357
- }),
358
- OPERATION_TIMEOUT,
359
- "Timeout uploading files. The repository was created but files may not have been uploaded."
360
- );
361
-
362
- const path = repoUrl.split("/").slice(-2).join("/");
363
-
364
- const commits: Commit[] = [];
365
- const commitIterator = listCommits({ repo, accessToken: hf_token });
366
-
367
- // Wrap the commit listing with a timeout
368
- const commitTimeout = new Promise<void>((_, reject) => {
369
- setTimeout(() => reject(new Error("Timeout listing commits")), 30000);
370
- });
371
-
372
- try {
373
- await Promise.race([
374
- (async () => {
375
- for await (const commit of commitIterator) {
376
- if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Promote version")) {
377
- continue;
378
- }
379
- commits.push({
380
- title: commit.title,
381
- oid: commit.oid,
382
- date: commit.date,
383
- });
384
- }
385
- })(),
386
- commitTimeout
387
- ]);
388
- } catch (error: any) {
389
- // If listing commits times out, continue with empty commits array
390
- console.error("Failed to list commits:", error.message);
391
- }
392
-
393
- const space = await withTimeout(
394
- spaceInfo({
395
- name: repo.name,
396
- accessToken: hf_token,
397
- }),
398
- 30000, // 30 seconds for space info
399
- "Timeout fetching space information"
400
- );
401
-
402
- const projectUrl = `https://huggingface.co/deepsite/${path}`;
403
- const spaceUrl = `https://huggingface.co/spaces/${path}`;
404
- const liveUrl = `https://${username}-${formattedTitle}.hf.space`;
405
-
406
- return {
407
- content: [
408
- {
409
- type: "text",
410
- text: JSON.stringify(
411
- {
412
- success: true,
413
- message: "Project created successfully!",
414
- projectUrl,
415
- spaceUrl,
416
- liveUrl,
417
- spaceId: space.name,
418
- projectId: space.id,
419
- files: pages.map((p) => p.path),
420
- updatedAt: space.updatedAt,
421
- },
422
- null,
423
- 2
424
- ),
425
- },
426
- ],
427
- };
428
- } catch (err: any) {
429
- if (err.message?.includes('timeout') || err.message?.includes('Timeout')) {
430
- throw new Error(err.message || "Operation timed out. Please try again.");
431
- }
432
- throw new Error(err.message || "Failed to create project");
433
- }
434
- }
435
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/promote/route.ts DELETED
@@ -1,230 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, listFiles, spaceInfo, uploadFiles, deleteFiles, downloadFile } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Page } from "@/types";
6
-
7
- export async function POST(
8
- req: NextRequest,
9
- { params }: {
10
- params: Promise<{
11
- namespace: string;
12
- repoId: string;
13
- commitId: string;
14
- }>
15
- }
16
- ) {
17
- const user = await isAuthenticated();
18
-
19
- if (user instanceof NextResponse || !user) {
20
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
21
- }
22
-
23
- const param = await params;
24
- const { namespace, repoId, commitId } = param;
25
-
26
- try {
27
- const repo: RepoDesignation = {
28
- type: "space",
29
- name: `${namespace}/${repoId}`,
30
- };
31
-
32
- const space = await spaceInfo({
33
- name: `${namespace}/${repoId}`,
34
- accessToken: user.token as string,
35
- additionalFields: ["author"],
36
- });
37
-
38
- if (!space || space.sdk !== "static") {
39
- return NextResponse.json(
40
- { ok: false, error: "Space is not a static space." },
41
- { status: 404 }
42
- );
43
- }
44
-
45
- if (space.author !== user.name) {
46
- return NextResponse.json(
47
- { ok: false, error: "Space does not belong to the authenticated user." },
48
- { status: 403 }
49
- );
50
- }
51
-
52
- const files: File[] = [];
53
- const pages: Page[] = [];
54
- const mediaFiles: string[] = [];
55
- const allowedExtensions = ["html", "md", "css", "js", "json", "txt"];
56
- const allowedFilesExtensions = ["jpg", "jpeg", "png", "gif", "svg", "webp", "avif", "heic", "heif", "ico", "bmp", "tiff", "tif", "mp4", "webm", "ogg", "avi", "mov", "mp3", "wav", "ogg", "aac", "m4a"];
57
- const commitFilePaths: Set<string> = new Set();
58
-
59
- for await (const fileInfo of listFiles({
60
- repo,
61
- accessToken: user.token as string,
62
- revision: commitId,
63
- })) {
64
- const fileExtension = fileInfo.path.split('.').pop()?.toLowerCase();
65
-
66
- if (fileInfo.path.endsWith(".html") || fileInfo.path.endsWith(".css") || fileInfo.path.endsWith(".js") || fileInfo.path.endsWith(".json")) {
67
- commitFilePaths.add(fileInfo.path);
68
-
69
- const blob = await downloadFile({
70
- repo,
71
- accessToken: user.token as string,
72
- path: fileInfo.path,
73
- revision: commitId,
74
- raw: true
75
- });
76
- const content = await blob?.text();
77
-
78
- if (content) {
79
- let mimeType = "text/plain";
80
-
81
- switch (fileExtension) {
82
- case "html":
83
- mimeType = "text/html";
84
- break;
85
- case "css":
86
- mimeType = "text/css";
87
- break;
88
- case "js":
89
- mimeType = "application/javascript";
90
- break;
91
- case "json":
92
- mimeType = "application/json";
93
- break;
94
- }
95
-
96
- if (fileInfo.path === "index.html") {
97
- pages.unshift({
98
- path: fileInfo.path,
99
- html: content,
100
- });
101
- } else {
102
- pages.push({
103
- path: fileInfo.path,
104
- html: content,
105
- });
106
- }
107
-
108
- const file = new File([content], fileInfo.path, { type: mimeType });
109
- files.push(file);
110
- }
111
- }
112
- else if (fileInfo.type === "directory" && (["videos", "images", "audio"].includes(fileInfo.path) || fileInfo.path === "components")) {
113
- for await (const subFileInfo of listFiles({
114
- repo,
115
- accessToken: user.token as string,
116
- revision: commitId,
117
- path: fileInfo.path,
118
- })) {
119
- if (subFileInfo.path.includes("components")) {
120
- commitFilePaths.add(subFileInfo.path);
121
- const blob = await downloadFile({
122
- repo,
123
- accessToken: user.token as string,
124
- path: subFileInfo.path,
125
- revision: commitId,
126
- raw: true
127
- });
128
- const content = await blob?.text();
129
-
130
- if (content) {
131
- pages.push({
132
- path: subFileInfo.path,
133
- html: content,
134
- });
135
-
136
- const file = new File([content], subFileInfo.path, { type: "text/html" });
137
- files.push(file);
138
- }
139
- } else if (allowedFilesExtensions.includes(subFileInfo.path.split(".").pop() || "")) {
140
- commitFilePaths.add(subFileInfo.path);
141
- mediaFiles.push(`https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${subFileInfo.path}`);
142
- }
143
- }
144
- }
145
- else if (allowedExtensions.includes(fileExtension || "")) {
146
- commitFilePaths.add(fileInfo.path);
147
- }
148
- }
149
-
150
- const mainBranchFilePaths: Set<string> = new Set();
151
- for await (const fileInfo of listFiles({
152
- repo,
153
- accessToken: user.token as string,
154
- revision: "main",
155
- })) {
156
- const fileExtension = fileInfo.path.split('.').pop()?.toLowerCase();
157
-
158
- if (allowedExtensions.includes(fileExtension || "")) {
159
- mainBranchFilePaths.add(fileInfo.path);
160
- }
161
- }
162
-
163
- const filesToDelete: string[] = [];
164
- for (const mainFilePath of mainBranchFilePaths) {
165
- if (!commitFilePaths.has(mainFilePath)) {
166
- filesToDelete.push(mainFilePath);
167
- }
168
- }
169
-
170
- if (files.length === 0 && filesToDelete.length === 0) {
171
- return NextResponse.json(
172
- { ok: false, error: "No files found in the specified commit and no files to delete" },
173
- { status: 404 }
174
- );
175
- }
176
-
177
- if (filesToDelete.length > 0) {
178
- await deleteFiles({
179
- repo,
180
- paths: filesToDelete,
181
- accessToken: user.token as string,
182
- commitTitle: `Removed files from promoting ${commitId.slice(0, 7)}`,
183
- commitDescription: `Removed files that don't exist in commit ${commitId}:\n${filesToDelete.map(path => `- ${path}`).join('\n')}`,
184
- });
185
- }
186
-
187
- if (files.length > 0) {
188
- await uploadFiles({
189
- repo,
190
- files,
191
- accessToken: user.token as string,
192
- commitTitle: `Promote version ${commitId.slice(0, 7)} to main`,
193
- commitDescription: `Promoted commit ${commitId} to main branch`,
194
- });
195
- }
196
-
197
- return NextResponse.json(
198
- {
199
- ok: true,
200
- message: "Version promoted successfully",
201
- promotedCommit: commitId,
202
- pages: pages,
203
- files: mediaFiles,
204
- },
205
- { status: 200 }
206
- );
207
-
208
- } catch (error: any) {
209
-
210
- // Handle specific HuggingFace API errors
211
- if (error.statusCode === 404) {
212
- return NextResponse.json(
213
- { ok: false, error: "Commit not found" },
214
- { status: 404 }
215
- );
216
- }
217
-
218
- if (error.statusCode === 403) {
219
- return NextResponse.json(
220
- { ok: false, error: "Access denied to repository" },
221
- { status: 403 }
222
- );
223
- }
224
-
225
- return NextResponse.json(
226
- { ok: false, error: error.message || "Failed to promote version" },
227
- { status: 500 }
228
- );
229
- }
230
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/route.ts DELETED
@@ -1,102 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, listFiles, spaceInfo, downloadFile } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Page } from "@/types";
6
-
7
- export async function GET(
8
- req: NextRequest,
9
- { params }: {
10
- params: Promise<{
11
- namespace: string;
12
- repoId: string;
13
- commitId: string;
14
- }>
15
- }
16
- ) {
17
- const user = await isAuthenticated();
18
-
19
- if (user instanceof NextResponse || !user) {
20
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
21
- }
22
-
23
- const param = await params;
24
- const { namespace, repoId, commitId } = param;
25
-
26
- try {
27
- const repo: RepoDesignation = {
28
- type: "space",
29
- name: `${namespace}/${repoId}`,
30
- };
31
-
32
- const space = await spaceInfo({
33
- name: `${namespace}/${repoId}`,
34
- accessToken: user.token as string,
35
- additionalFields: ["author"],
36
- });
37
-
38
- if (!space || space.sdk !== "static") {
39
- return NextResponse.json(
40
- { ok: false, error: "Space is not a static space." },
41
- { status: 404 }
42
- );
43
- }
44
-
45
- if (space.author !== user.name) {
46
- return NextResponse.json(
47
- { ok: false, error: "Space does not belong to the authenticated user." },
48
- { status: 403 }
49
- );
50
- }
51
-
52
- const pages: Page[] = [];
53
-
54
- for await (const fileInfo of listFiles({
55
- repo,
56
- accessToken: user.token as string,
57
- revision: commitId,
58
- })) {
59
- const fileExtension = fileInfo.path.split('.').pop()?.toLowerCase();
60
-
61
- if (fileInfo.path.endsWith(".html") || fileInfo.path.endsWith(".css") || fileInfo.path.endsWith(".js") || fileInfo.path.endsWith(".json")) {
62
- const blob = await downloadFile({
63
- repo,
64
- accessToken: user.token as string,
65
- path: fileInfo.path,
66
- revision: commitId,
67
- raw: true
68
- });
69
- const content = await blob?.text();
70
-
71
- if (content) {
72
- if (fileInfo.path === "index.html") {
73
- pages.unshift({
74
- path: fileInfo.path,
75
- html: content,
76
- });
77
- } else {
78
- pages.push({
79
- path: fileInfo.path,
80
- html: content,
81
- });
82
- }
83
- }
84
- }
85
- }
86
-
87
- return NextResponse.json({
88
- ok: true,
89
- pages,
90
- });
91
- } catch (error: any) {
92
- console.error("Error fetching commit pages:", error);
93
- return NextResponse.json(
94
- {
95
- ok: false,
96
- error: error.message || "Failed to fetch commit pages",
97
- },
98
- { status: 500 }
99
- );
100
- }
101
- }
102
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/download/route.ts DELETED
@@ -1,105 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, listFiles, spaceInfo, downloadFile } from "@huggingface/hub";
3
- import JSZip from "jszip";
4
-
5
- import { isAuthenticated } from "@/lib/auth";
6
-
7
- export async function GET(
8
- req: NextRequest,
9
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
10
- ) {
11
- const user = await isAuthenticated();
12
-
13
- if (user instanceof NextResponse || !user) {
14
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
15
- }
16
-
17
- const param = await params;
18
- const { namespace, repoId } = param;
19
-
20
- try {
21
- const space = await spaceInfo({
22
- name: `${namespace}/${repoId}`,
23
- accessToken: user.token as string,
24
- additionalFields: ["author"],
25
- });
26
-
27
- if (!space || space.sdk !== "static") {
28
- return NextResponse.json(
29
- {
30
- ok: false,
31
- error: "Space is not a static space",
32
- },
33
- { status: 404 }
34
- );
35
- }
36
-
37
- if (space.author !== user.name) {
38
- return NextResponse.json(
39
- {
40
- ok: false,
41
- error: "Space does not belong to the authenticated user",
42
- },
43
- { status: 403 }
44
- );
45
- }
46
-
47
- const repo: RepoDesignation = {
48
- type: "space",
49
- name: `${namespace}/${repoId}`,
50
- };
51
-
52
- const zip = new JSZip();
53
-
54
- for await (const fileInfo of listFiles({
55
- repo,
56
- accessToken: user.token as string,
57
- recursive: true,
58
- })) {
59
- if (fileInfo.type === "directory" || fileInfo.path.startsWith(".")) {
60
- continue;
61
- }
62
-
63
- try {
64
- const blob = await downloadFile({
65
- repo,
66
- accessToken: user.token as string,
67
- path: fileInfo.path,
68
- raw: true
69
- });
70
-
71
- if (blob) {
72
- const arrayBuffer = await blob.arrayBuffer();
73
- zip.file(fileInfo.path, arrayBuffer);
74
- }
75
- } catch (error) {
76
- console.error(`Error downloading file ${fileInfo.path}:`, error);
77
- }
78
- }
79
-
80
- const zipBlob = await zip.generateAsync({
81
- type: "blob",
82
- compression: "DEFLATE",
83
- compressionOptions: {
84
- level: 6
85
- }
86
- });
87
-
88
- const projectName = `${namespace}-${repoId}`.replace(/[^a-zA-Z0-9-_]/g, '_');
89
- const filename = `${projectName}.zip`;
90
-
91
- return new NextResponse(zipBlob, {
92
- headers: {
93
- "Content-Type": "application/zip",
94
- "Content-Disposition": `attachment; filename="${filename}"`,
95
- "Content-Length": zipBlob.size.toString(),
96
- },
97
- });
98
- } catch (error: any) {
99
- return NextResponse.json(
100
- { ok: false, error: error.message || "Failed to create ZIP file" },
101
- { status: 500 }
102
- );
103
- }
104
- }
105
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/images/route.ts DELETED
@@ -1,123 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, spaceInfo, uploadFiles } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
-
6
- export async function POST(
7
- req: NextRequest,
8
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
9
- ) {
10
- try {
11
- const user = await isAuthenticated();
12
-
13
- if (user instanceof NextResponse || !user) {
14
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
15
- }
16
-
17
- const param = await params;
18
- const { namespace, repoId } = param;
19
-
20
- const space = await spaceInfo({
21
- name: `${namespace}/${repoId}`,
22
- accessToken: user.token as string,
23
- additionalFields: ["author"],
24
- });
25
-
26
- if (!space || space.sdk !== "static") {
27
- return NextResponse.json(
28
- { ok: false, error: "Space is not a static space." },
29
- { status: 404 }
30
- );
31
- }
32
-
33
- if (space.author !== user.name) {
34
- return NextResponse.json(
35
- { ok: false, error: "Space does not belong to the authenticated user." },
36
- { status: 403 }
37
- );
38
- }
39
-
40
- // Parse the FormData to get the media files
41
- const formData = await req.formData();
42
- const mediaFiles = formData.getAll("images") as File[];
43
-
44
- if (!mediaFiles || mediaFiles.length === 0) {
45
- return NextResponse.json(
46
- {
47
- ok: false,
48
- error: "At least one media file is required under the 'images' key",
49
- },
50
- { status: 400 }
51
- );
52
- }
53
-
54
- const files: File[] = [];
55
- for (const file of mediaFiles) {
56
- if (!(file instanceof File)) {
57
- return NextResponse.json(
58
- {
59
- ok: false,
60
- error: "Invalid file format - all items under 'images' key must be files",
61
- },
62
- { status: 400 }
63
- );
64
- }
65
-
66
- // Check if file is a supported media type
67
- const isImage = file.type.startsWith('image/');
68
- const isVideo = file.type.startsWith('video/');
69
- const isAudio = file.type.startsWith('audio/');
70
-
71
- if (!isImage && !isVideo && !isAudio) {
72
- return NextResponse.json(
73
- {
74
- ok: false,
75
- error: `File ${file.name} is not a supported media type (image, video, or audio)`,
76
- },
77
- { status: 400 }
78
- );
79
- }
80
-
81
- // Create File object with appropriate folder prefix
82
- let folderPrefix = 'images/';
83
- if (isVideo) {
84
- folderPrefix = 'videos/';
85
- } else if (isAudio) {
86
- folderPrefix = 'audio/';
87
- }
88
-
89
- const fileName = `${folderPrefix}${file.name}`;
90
- const processedFile = new File([file], fileName, { type: file.type });
91
- files.push(processedFile);
92
- }
93
-
94
- // Upload files to HuggingFace space
95
- const repo: RepoDesignation = {
96
- type: "space",
97
- name: `${namespace}/${repoId}`,
98
- };
99
-
100
- await uploadFiles({
101
- repo,
102
- files,
103
- accessToken: user.token as string,
104
- commitTitle: `Upload ${files.length} media file(s)`,
105
- });
106
-
107
- return NextResponse.json({
108
- ok: true,
109
- message: `Successfully uploaded ${files.length} media file(s) to ${namespace}/${repoId}/`,
110
- uploadedFiles: files.map((file) => `https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${file.name}`),
111
- }, { status: 200 });
112
-
113
- } catch (error) {
114
- console.error('Error uploading media files:', error);
115
- return NextResponse.json(
116
- {
117
- ok: false,
118
- error: "Failed to upload media files",
119
- },
120
- { status: 500 }
121
- );
122
- }
123
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/route.ts DELETED
@@ -1,197 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, spaceInfo, listFiles, deleteRepo, listCommits, downloadFile } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Commit, Page } from "@/types";
6
-
7
- export async function DELETE(
8
- req: NextRequest,
9
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
10
- ) {
11
- const user = await isAuthenticated();
12
-
13
- if (user instanceof NextResponse || !user) {
14
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
15
- }
16
-
17
- const param = await params;
18
- const { namespace, repoId } = param;
19
-
20
- try {
21
- const space = await spaceInfo({
22
- name: `${namespace}/${repoId}`,
23
- accessToken: user.token as string,
24
- additionalFields: ["author"],
25
- });
26
-
27
- if (!space || space.sdk !== "static") {
28
- return NextResponse.json(
29
- { ok: false, error: "Space is not a static space." },
30
- { status: 404 }
31
- );
32
- }
33
-
34
- if (space.author !== user.name) {
35
- return NextResponse.json(
36
- { ok: false, error: "Space does not belong to the authenticated user." },
37
- { status: 403 }
38
- );
39
- }
40
-
41
- const repo: RepoDesignation = {
42
- type: "space",
43
- name: `${namespace}/${repoId}`,
44
- };
45
-
46
- await deleteRepo({
47
- repo,
48
- accessToken: user.token as string,
49
- });
50
-
51
-
52
- return NextResponse.json({ ok: true }, { status: 200 });
53
- } catch (error: any) {
54
- return NextResponse.json(
55
- { ok: false, error: error.message },
56
- { status: 500 }
57
- );
58
- }
59
- }
60
-
61
- export async function GET(
62
- req: NextRequest,
63
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
64
- ) {
65
- const user = await isAuthenticated();
66
-
67
- if (user instanceof NextResponse || !user) {
68
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
69
- }
70
-
71
- const param = await params;
72
- const { namespace, repoId } = param;
73
-
74
- try {
75
- const space = await spaceInfo({
76
- name: namespace + "/" + repoId,
77
- accessToken: user.token as string,
78
- additionalFields: ["author"],
79
- });
80
-
81
- if (!space || space.sdk !== "static") {
82
- return NextResponse.json(
83
- {
84
- ok: false,
85
- error: "Space is not a static space",
86
- },
87
- { status: 404 }
88
- );
89
- }
90
- if (space.author !== user.name) {
91
- return NextResponse.json(
92
- {
93
- ok: false,
94
- error: "Space does not belong to the authenticated user",
95
- },
96
- { status: 403 }
97
- );
98
- }
99
-
100
- const repo: RepoDesignation = {
101
- type: "space",
102
- name: `${namespace}/${repoId}`,
103
- };
104
-
105
- const htmlFiles: Page[] = [];
106
- const files: string[] = [];
107
-
108
- const allowedFilesExtensions = ["jpg", "jpeg", "png", "gif", "svg", "webp", "avif", "heic", "heif", "ico", "bmp", "tiff", "tif", "mp4", "webm", "ogg", "avi", "mov", "mp3", "wav", "ogg", "aac", "m4a"];
109
-
110
- for await (const fileInfo of listFiles({repo, accessToken: user.token as string})) {
111
- if (fileInfo.path.endsWith(".html") || fileInfo.path.endsWith(".css") || fileInfo.path.endsWith(".js") || fileInfo.path.endsWith(".json")) {
112
- const blob = await downloadFile({ repo, accessToken: user.token as string, path: fileInfo.path, raw: true });
113
- const html = await blob?.text();
114
- if (!html) {
115
- continue;
116
- }
117
- if (fileInfo.path === "index.html") {
118
- htmlFiles.unshift({
119
- path: fileInfo.path,
120
- html,
121
- });
122
- } else {
123
- htmlFiles.push({
124
- path: fileInfo.path,
125
- html,
126
- });
127
- }
128
- }
129
- if (fileInfo.type === "directory") {
130
- for await (const subFileInfo of listFiles({repo, accessToken: user.token as string, path: fileInfo.path})) {
131
- if (allowedFilesExtensions.includes(subFileInfo.path.split(".").pop() || "")) {
132
- files.push(`https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${subFileInfo.path}`);
133
- } else {
134
- const blob = await downloadFile({ repo, accessToken: user.token as string, path: subFileInfo.path, raw: true });
135
- const html = await blob?.text();
136
- if (!html) {
137
- continue;
138
- }
139
- htmlFiles.push({
140
- path: subFileInfo.path,
141
- html,
142
- });
143
- }
144
- }
145
- }
146
- }
147
- const commits: Commit[] = [];
148
- for await (const commit of listCommits({ repo, accessToken: user.token as string })) {
149
- if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Removed files from promoting")) {
150
- continue;
151
- }
152
- commits.push({
153
- title: commit.title,
154
- oid: commit.oid,
155
- date: commit.date,
156
- });
157
- }
158
-
159
- if (htmlFiles.length === 0) {
160
- return NextResponse.json(
161
- {
162
- ok: false,
163
- error: "No HTML files found",
164
- },
165
- { status: 404 }
166
- );
167
- }
168
- return NextResponse.json(
169
- {
170
- project: {
171
- id: space.id,
172
- space_id: space.name,
173
- private: space.private,
174
- _updatedAt: space.updatedAt,
175
- },
176
- pages: htmlFiles,
177
- files,
178
- commits,
179
- ok: true,
180
- },
181
- { status: 200 }
182
- );
183
-
184
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
185
- } catch (error: any) {
186
- if (error.statusCode === 404) {
187
- return NextResponse.json(
188
- { error: "Space not found", ok: false },
189
- { status: 404 }
190
- );
191
- }
192
- return NextResponse.json(
193
- { error: error.message, ok: false },
194
- { status: 500 }
195
- );
196
- }
197
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/save/route.ts DELETED
@@ -1,72 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { uploadFiles } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Page } from "@/types";
6
-
7
- export async function PUT(
8
- req: NextRequest,
9
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
10
- ) {
11
- const user = await isAuthenticated();
12
- if (user instanceof NextResponse || !user) {
13
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
14
- }
15
-
16
- const param = await params;
17
- const { namespace, repoId } = param;
18
- const { pages, commitTitle = "Manual changes saved" } = await req.json();
19
-
20
- if (!pages || !Array.isArray(pages) || pages.length === 0) {
21
- return NextResponse.json(
22
- { ok: false, error: "Pages are required" },
23
- { status: 400 }
24
- );
25
- }
26
-
27
- try {
28
- // Prepare files for upload
29
- const files: File[] = [];
30
- pages.forEach((page: Page) => {
31
- // Determine MIME type based on file extension
32
- let mimeType = "text/html";
33
- if (page.path.endsWith(".css")) {
34
- mimeType = "text/css";
35
- } else if (page.path.endsWith(".js")) {
36
- mimeType = "text/javascript";
37
- } else if (page.path.endsWith(".json")) {
38
- mimeType = "application/json";
39
- }
40
- const file = new File([page.html], page.path, { type: mimeType });
41
- files.push(file);
42
- });
43
-
44
- const response = await uploadFiles({
45
- repo: {
46
- type: "space",
47
- name: `${namespace}/${repoId}`,
48
- },
49
- files,
50
- commitTitle,
51
- accessToken: user.token as string,
52
- });
53
-
54
- return NextResponse.json({
55
- ok: true,
56
- pages,
57
- commit: {
58
- ...response.commit,
59
- title: commitTitle,
60
- }
61
- });
62
- } catch (error: any) {
63
- console.error("Error saving manual changes:", error);
64
- return NextResponse.json(
65
- {
66
- ok: false,
67
- error: error.message || "Failed to save changes",
68
- },
69
- { status: 500 }
70
- );
71
- }
72
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/update/route.ts DELETED
@@ -1,141 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { createRepo, RepoDesignation, uploadFiles } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Page } from "@/types";
6
- import { COLORS } from "@/lib/utils";
7
- import { injectDeepSiteBadge, isIndexPage } from "@/lib/inject-badge";
8
- import { pagesToFiles } from "@/lib/format-ai-response";
9
-
10
- /**
11
- * UPDATE route - for updating existing projects or creating new ones after AI streaming
12
- * This route handles the HuggingFace upload after client-side AI response processing
13
- */
14
- export async function PUT(
15
- req: NextRequest,
16
- { params }: { params: Promise<{ namespace: string; repoId: string }> }
17
- ) {
18
- const user = await isAuthenticated();
19
- if (user instanceof NextResponse || !user) {
20
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
21
- }
22
-
23
- const param = await params;
24
- let { namespace, repoId } = param;
25
- const { pages, commitTitle = "AI-generated changes", isNew, projectName } = await req.json();
26
-
27
- if (!pages || !Array.isArray(pages) || pages.length === 0) {
28
- return NextResponse.json(
29
- { ok: false, error: "Pages are required" },
30
- { status: 400 }
31
- );
32
- }
33
-
34
- try {
35
- let files: File[];
36
-
37
- if (isNew) {
38
- // Creating a new project
39
- const title = projectName || "DeepSite Project";
40
- const formattedTitle = title
41
- .toLowerCase()
42
- .replace(/[^a-z0-9]+/g, "-")
43
- .split("-")
44
- .filter(Boolean)
45
- .join("-")
46
- .slice(0, 96);
47
-
48
- const repo: RepoDesignation = {
49
- type: "space",
50
- name: `${user.name}/${formattedTitle}`,
51
- };
52
-
53
- try {
54
- const { repoUrl } = await createRepo({
55
- repo,
56
- accessToken: user.token as string,
57
- });
58
- namespace = user.name;
59
- repoId = repoUrl.split("/").slice(-2).join("/").split("/")[1];
60
- } catch (createRepoError: any) {
61
- return NextResponse.json(
62
- {
63
- ok: false,
64
- error: `Failed to create repository: ${createRepoError.message || 'Unknown error'}`,
65
- },
66
- { status: 500 }
67
- );
68
- }
69
-
70
- // Prepare files with badge injection for new projects
71
- files = [];
72
- pages.forEach((page: Page) => {
73
- let mimeType = "text/html";
74
- if (page.path.endsWith(".css")) {
75
- mimeType = "text/css";
76
- } else if (page.path.endsWith(".js")) {
77
- mimeType = "text/javascript";
78
- } else if (page.path.endsWith(".json")) {
79
- mimeType = "application/json";
80
- }
81
- const content = (mimeType === "text/html" && isIndexPage(page.path))
82
- ? injectDeepSiteBadge(page.html)
83
- : page.html;
84
- const file = new File([content], page.path, { type: mimeType });
85
- files.push(file);
86
- });
87
-
88
- // Add README.md for new projects
89
- const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
90
- const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
91
- const README = `---
92
- title: ${title}
93
- colorFrom: ${colorFrom}
94
- colorTo: ${colorTo}
95
- emoji: 🐳
96
- sdk: static
97
- pinned: false
98
- tags:
99
- - deepsite-v3
100
- ---
101
-
102
- # Welcome to your new DeepSite project!
103
- This project was created with [DeepSite](https://huggingface.co/deepsite).
104
- `;
105
- files.push(new File([README], "README.md", { type: "text/markdown" }));
106
- } else {
107
- // Updating existing project - no badge injection
108
- files = pagesToFiles(pages);
109
- }
110
-
111
- const response = await uploadFiles({
112
- repo: {
113
- type: "space",
114
- name: `${namespace}/${repoId}`,
115
- },
116
- files,
117
- commitTitle,
118
- accessToken: user.token as string,
119
- });
120
-
121
- return NextResponse.json({
122
- ok: true,
123
- pages,
124
- repoId: `${namespace}/${repoId}`,
125
- commit: {
126
- ...response.commit,
127
- title: commitTitle,
128
- }
129
- });
130
- } catch (error: any) {
131
- console.error("Error updating project:", error);
132
- return NextResponse.json(
133
- {
134
- ok: false,
135
- error: error.message || "Failed to update project",
136
- },
137
- { status: 500 }
138
- );
139
- }
140
- }
141
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/projects/route.ts DELETED
@@ -1,121 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
- import { RepoDesignation, createRepo, listCommits, spaceInfo, uploadFiles } from "@huggingface/hub";
3
-
4
- import { isAuthenticated } from "@/lib/auth";
5
- import { Commit, Page } from "@/types";
6
- import { COLORS } from "@/lib/utils";
7
- import { injectDeepSiteBadge, isIndexPage } from "@/lib/inject-badge";
8
-
9
- export async function POST(
10
- req: NextRequest,
11
- ) {
12
- const user = await isAuthenticated();
13
- if (user instanceof NextResponse || !user) {
14
- return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
15
- }
16
-
17
- const { title: titleFromRequest, pages, prompt } = await req.json();
18
-
19
- const title = titleFromRequest ?? "DeepSite Project";
20
-
21
- const formattedTitle = title
22
- .toLowerCase()
23
- .replace(/[^a-z0-9]+/g, "-")
24
- .split("-")
25
- .filter(Boolean)
26
- .join("-")
27
- .slice(0, 96);
28
-
29
- const repo: RepoDesignation = {
30
- type: "space",
31
- name: `${user.name}/${formattedTitle}`,
32
- };
33
- const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
34
- const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
35
- const README = `---
36
- title: ${title}
37
- colorFrom: ${colorFrom}
38
- colorTo: ${colorTo}
39
- emoji: 🐳
40
- sdk: static
41
- pinned: false
42
- tags:
43
- - deepsite-v3
44
- ---
45
-
46
- # Welcome to your new DeepSite project!
47
- This project was created with [DeepSite](https://huggingface.co/deepsite).
48
- `;
49
-
50
- const files: File[] = [];
51
- const readmeFile = new File([README], "README.md", { type: "text/markdown" });
52
- files.push(readmeFile);
53
- pages.forEach((page: Page) => {
54
- // Determine MIME type based on file extension
55
- let mimeType = "text/html";
56
- if (page.path.endsWith(".css")) {
57
- mimeType = "text/css";
58
- } else if (page.path.endsWith(".js")) {
59
- mimeType = "text/javascript";
60
- } else if (page.path.endsWith(".json")) {
61
- mimeType = "application/json";
62
- }
63
- // Inject the DeepSite badge script into index pages only (not components or other HTML files)
64
- const content = (mimeType === "text/html" && isIndexPage(page.path))
65
- ? injectDeepSiteBadge(page.html)
66
- : page.html;
67
- const file = new File([content], page.path, { type: mimeType });
68
- files.push(file);
69
- });
70
-
71
- try {
72
- const { repoUrl} = await createRepo({
73
- repo,
74
- accessToken: user.token as string,
75
- });
76
- const commitTitle = !prompt || prompt.trim() === "" ? "Redesign my website" : prompt;
77
- await uploadFiles({
78
- repo,
79
- files,
80
- accessToken: user.token as string,
81
- commitTitle
82
- });
83
-
84
- const path = repoUrl.split("/").slice(-2).join("/");
85
-
86
- const commits: Commit[] = [];
87
- for await (const commit of listCommits({ repo, accessToken: user.token as string })) {
88
- if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Promote version")) {
89
- continue;
90
- }
91
- commits.push({
92
- title: commit.title,
93
- oid: commit.oid,
94
- date: commit.date,
95
- });
96
- }
97
-
98
- const space = await spaceInfo({
99
- name: repo.name,
100
- accessToken: user.token as string,
101
- });
102
-
103
- let newProject = {
104
- files,
105
- pages,
106
- commits,
107
- project: {
108
- id: space.id,
109
- space_id: space.name,
110
- _updatedAt: space.updatedAt,
111
- }
112
- }
113
-
114
- return NextResponse.json({ space: newProject, path, ok: true }, { status: 201 });
115
- } catch (err: any) {
116
- return NextResponse.json(
117
- { error: err.message, ok: false },
118
- { status: 500 }
119
- );
120
- }
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/me/route.ts DELETED
@@ -1,46 +0,0 @@
1
- import { listSpaces } from "@huggingface/hub";
2
- import { headers } from "next/headers";
3
- import { NextResponse } from "next/server";
4
-
5
- export async function GET() {
6
- const authHeaders = await headers();
7
- const token = authHeaders.get("Authorization");
8
- if (!token) {
9
- return NextResponse.json({ user: null, errCode: 401 }, { status: 401 });
10
- }
11
-
12
- const userResponse = await fetch("https://huggingface.co/api/whoami-v2", {
13
- headers: {
14
- Authorization: `${token}`,
15
- },
16
- });
17
-
18
- if (!userResponse.ok) {
19
- return NextResponse.json(
20
- { user: null, errCode: userResponse.status },
21
- { status: userResponse.status }
22
- );
23
- }
24
- const user = await userResponse.json();
25
- const projects = [];
26
- for await (const space of listSpaces({
27
- accessToken: token.replace("Bearer ", "") as string,
28
- additionalFields: ["author", "cardData"],
29
- search: {
30
- owner: user.name,
31
- }
32
- })) {
33
- if (
34
- space.sdk === "static" &&
35
- Array.isArray((space.cardData as { tags?: string[] })?.tags) &&
36
- (
37
- ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite-v3")) ||
38
- ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite"))
39
- )
40
- ) {
41
- projects.push(space);
42
- }
43
- }
44
-
45
- return NextResponse.json({ user, projects, errCode: null }, { status: 200 });
46
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/re-design/route.ts DELETED
@@ -1,71 +0,0 @@
1
- import { NextRequest, NextResponse } from "next/server";
2
-
3
- // Timeout configuration (in milliseconds)
4
- const FETCH_TIMEOUT = 30000; // 30 seconds for external fetch
5
-
6
- // Extend the maximum execution time for this route
7
- export const maxDuration = 60; // 1 minute
8
-
9
- export async function PUT(request: NextRequest) {
10
- const body = await request.json();
11
- const { url } = body;
12
-
13
- if (!url) {
14
- return NextResponse.json({ error: "URL is required" }, { status: 400 });
15
- }
16
-
17
- try {
18
- // Create an AbortController for timeout
19
- const controller = new AbortController();
20
- const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT);
21
-
22
- try {
23
- const response = await fetch(
24
- `https://r.jina.ai/${encodeURIComponent(url)}`,
25
- {
26
- method: "POST",
27
- signal: controller.signal,
28
- }
29
- );
30
-
31
- clearTimeout(timeoutId);
32
-
33
- if (!response.ok) {
34
- return NextResponse.json(
35
- { error: "Failed to fetch redesign" },
36
- { status: 500 }
37
- );
38
- }
39
- const markdown = await response.text();
40
- return NextResponse.json(
41
- {
42
- ok: true,
43
- markdown,
44
- },
45
- { status: 200 }
46
- );
47
- } catch (fetchError: any) {
48
- clearTimeout(timeoutId);
49
-
50
- if (fetchError.name === 'AbortError') {
51
- return NextResponse.json(
52
- { error: "Request timeout: The external service took too long to respond. Please try again." },
53
- { status: 504 }
54
- );
55
- }
56
- throw fetchError;
57
- }
58
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
59
- } catch (error: any) {
60
- if (error.name === 'AbortError' || error.message?.includes('timeout')) {
61
- return NextResponse.json(
62
- { error: "Request timeout: The external service took too long to respond. Please try again." },
63
- { status: 504 }
64
- );
65
- }
66
- return NextResponse.json(
67
- { error: error.message || "An error occurred" },
68
- { status: 500 }
69
- );
70
- }
71
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/auth/callback/page.tsx DELETED
@@ -1,97 +0,0 @@
1
- "use client";
2
- import Link from "next/link";
3
- import { useUser } from "@/hooks/useUser";
4
- import { use, useState } from "react";
5
- import { useMount, useTimeoutFn } from "react-use";
6
-
7
- import { Button } from "@/components/ui/button";
8
- import { AnimatedBlobs } from "@/components/animated-blobs";
9
- import { useBroadcastChannel } from "@/lib/useBroadcastChannel";
10
- export default function AuthCallback({
11
- searchParams,
12
- }: {
13
- searchParams: Promise<{ code: string }>;
14
- }) {
15
- const [showButton, setShowButton] = useState(false);
16
- const [isPopupAuth, setIsPopupAuth] = useState(false);
17
- const { code } = use(searchParams);
18
- const { loginFromCode } = useUser();
19
- const { postMessage } = useBroadcastChannel("auth", () => {});
20
-
21
- useMount(async () => {
22
- if (code) {
23
- const isPopup = window.opener || window.parent !== window;
24
- setIsPopupAuth(isPopup);
25
-
26
- if (isPopup) {
27
- postMessage({
28
- type: "user-oauth",
29
- code: code,
30
- });
31
-
32
- setTimeout(() => {
33
- if (window.opener) {
34
- window.close();
35
- }
36
- }, 1000);
37
- } else {
38
- await loginFromCode(code);
39
- }
40
- }
41
- });
42
-
43
- useTimeoutFn(() => setShowButton(true), 7000);
44
-
45
- return (
46
- <div className="h-screen flex flex-col justify-center items-center bg-neutral-950 z-1 relative">
47
- <div className="background__noisy" />
48
- <div className="relative max-w-4xl py-10 flex items-center justify-center w-full">
49
- <div className="max-w-lg mx-auto !rounded-2xl !p-0 !bg-white !border-neutral-100 min-w-xs text-center overflow-hidden ring-[8px] ring-white/20">
50
- <header className="bg-neutral-50 p-6 border-b border-neutral-200/60">
51
- <div className="flex items-center justify-center -space-x-4 mb-3">
52
- <div className="size-9 rounded-full bg-pink-200 shadow-2xs flex items-center justify-center text-xl opacity-50">
53
- 🚀
54
- </div>
55
- <div className="size-11 rounded-full bg-amber-200 shadow-2xl flex items-center justify-center text-2xl z-2">
56
- 👋
57
- </div>
58
- <div className="size-9 rounded-full bg-sky-200 shadow-2xs flex items-center justify-center text-xl opacity-50">
59
- 🙌
60
- </div>
61
- </div>
62
- <p className="text-xl font-semibold text-neutral-950">
63
- {isPopupAuth
64
- ? "Authentication Complete!"
65
- : "Login In Progress..."}
66
- </p>
67
- <p className="text-sm text-neutral-500 mt-1.5">
68
- {isPopupAuth
69
- ? "You can now close this tab and return to the previous page."
70
- : "Wait a moment while we log you in with your code."}
71
- </p>
72
- </header>
73
- <main className="space-y-4 p-6">
74
- <div>
75
- <p className="text-sm text-neutral-700 mb-4 max-w-xs">
76
- If you are not redirected automatically in the next 5 seconds,
77
- please click the button below
78
- </p>
79
- {showButton ? (
80
- <Link href="/">
81
- <Button variant="black" className="relative">
82
- Go to Home
83
- </Button>
84
- </Link>
85
- ) : (
86
- <p className="text-xs text-neutral-500">
87
- Please wait, we are logging you in...
88
- </p>
89
- )}
90
- </div>
91
- </main>
92
- </div>
93
- <AnimatedBlobs />
94
- </div>
95
- </div>
96
- );
97
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/auth/page.tsx DELETED
@@ -1,28 +0,0 @@
1
- import { redirect } from "next/navigation";
2
- import { Metadata } from "next";
3
-
4
- import { getAuth } from "@/app/actions/auth";
5
-
6
- export const revalidate = 1;
7
-
8
- export const metadata: Metadata = {
9
- robots: "noindex, nofollow",
10
- };
11
-
12
- export default async function Auth() {
13
- const loginRedirectUrl = await getAuth();
14
- if (loginRedirectUrl) {
15
- redirect(loginRedirectUrl);
16
- }
17
-
18
- return (
19
- <div className="p-4">
20
- <div className="border bg-red-500/10 border-red-500/20 text-red-500 px-5 py-3 rounded-lg">
21
- <h1 className="text-xl font-bold">Error</h1>
22
- <p className="text-sm">
23
- An error occurred while trying to log in. Please try again later.
24
- </p>
25
- </div>
26
- </div>
27
- );
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/favicon.ico DELETED
Binary file (25.9 kB)
 
app/layout.tsx DELETED
@@ -1,145 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import type { Metadata, Viewport } from "next";
3
- import { Inter, PT_Sans } from "next/font/google";
4
- import Script from "next/script";
5
- import { headers } from "next/headers";
6
- import { redirect } from "next/navigation";
7
-
8
- import "@/assets/globals.css";
9
- import { Toaster } from "@/components/ui/sonner";
10
- import IframeDetector from "@/components/iframe-detector";
11
- import AppContext from "@/components/contexts/app-context";
12
- import TanstackContext from "@/components/contexts/tanstack-query-context";
13
- import { LoginProvider } from "@/components/contexts/login-context";
14
- import { ProProvider } from "@/components/contexts/pro-context";
15
- import { generateSEO, generateStructuredData } from "@/lib/seo";
16
-
17
- const inter = Inter({
18
- variable: "--font-inter-sans",
19
- subsets: ["latin"],
20
- });
21
-
22
- const ptSans = PT_Sans({
23
- variable: "--font-ptSans-mono",
24
- subsets: ["latin"],
25
- weight: ["400", "700"],
26
- });
27
-
28
- export const metadata: Metadata = {
29
- ...generateSEO({
30
- title: "DeepSite | Build with AI ✨",
31
- description:
32
- "DeepSite is a web development tool that helps you build websites with AI, no code required. Let's deploy your website with DeepSite and enjoy the magic of AI.",
33
- path: "/",
34
- }),
35
- appleWebApp: {
36
- capable: true,
37
- title: "DeepSite",
38
- statusBarStyle: "black-translucent",
39
- },
40
- icons: {
41
- icon: "/logo.svg",
42
- shortcut: "/logo.svg",
43
- apple: "/logo.svg",
44
- },
45
- verification: {
46
- google: process.env.GOOGLE_SITE_VERIFICATION,
47
- },
48
- };
49
-
50
- export const viewport: Viewport = {
51
- initialScale: 1,
52
- maximumScale: 1,
53
- themeColor: "#000000",
54
- };
55
-
56
- // async function getMe() {
57
- // const cookieStore = await cookies();
58
- // const cookieName = MY_TOKEN_KEY();
59
- // const token = cookieStore.get(cookieName)?.value;
60
-
61
- // if (!token) return { user: null, projects: [], errCode: null };
62
- // try {
63
- // const res = await apiServer.get("/me", {
64
- // headers: {
65
- // Authorization: `Bearer ${token}`,
66
- // },
67
- // });
68
- // return { user: res.data.user, projects: res.data.projects, errCode: null };
69
- // } catch (err: any) {
70
- // return { user: null, projects: [], errCode: err.status };
71
- // }
72
- // }
73
-
74
- export default async function RootLayout({
75
- children,
76
- }: Readonly<{
77
- children: React.ReactNode;
78
- }>) {
79
- // Domain redirect check
80
- const headersList = await headers();
81
- const forwardedHost = headersList.get("x-forwarded-host");
82
- const host = headersList.get("host");
83
- const hostname = (forwardedHost || host || "").split(":")[0];
84
-
85
- const isLocalDev =
86
- hostname === "localhost" ||
87
- hostname === "127.0.0.1" ||
88
- hostname.startsWith("192.168.");
89
- const isHuggingFace =
90
- hostname === "huggingface.co" || hostname.endsWith(".huggingface.co");
91
-
92
- if (!isHuggingFace && !isLocalDev) {
93
- const pathname = headersList.get("x-invoke-path") || "/deepsite";
94
- redirect(`https://huggingface.co${pathname}`);
95
- }
96
-
97
- // const data = await getMe();
98
-
99
- // Generate structured data
100
- const structuredData = generateStructuredData("WebApplication", {
101
- name: "DeepSite",
102
- description: "Build websites with AI, no code required",
103
- url: "https://huggingface.co/deepsite",
104
- });
105
-
106
- const organizationData = generateStructuredData("Organization", {
107
- name: "DeepSite",
108
- url: "https://huggingface.co/deepsite",
109
- });
110
-
111
- return (
112
- <html lang="en">
113
- <body
114
- className={`${inter.variable} ${ptSans.variable} antialiased bg-black dark h-[100dvh] overflow-hidden`}
115
- >
116
- <script
117
- type="application/ld+json"
118
- dangerouslySetInnerHTML={{
119
- __html: JSON.stringify(structuredData),
120
- }}
121
- />
122
- <script
123
- type="application/ld+json"
124
- dangerouslySetInnerHTML={{
125
- __html: JSON.stringify(organizationData),
126
- }}
127
- />
128
- <Script
129
- defer
130
- data-domain="deepsite.hf.co"
131
- src="https://plausible.io/js/script.js"
132
- />
133
- <IframeDetector />
134
- <Toaster richColors position="bottom-center" />
135
- <TanstackContext>
136
- <AppContext>
137
- <LoginProvider>
138
- <ProProvider>{children}</ProProvider>
139
- </LoginProvider>
140
- </AppContext>
141
- </TanstackContext>
142
- </body>
143
- </html>
144
- );
145
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/new/page.tsx DELETED
@@ -1,14 +0,0 @@
1
- import { AppEditor } from "@/components/editor";
2
- import { Metadata } from "next";
3
- import { generateSEO } from "@/lib/seo";
4
-
5
- export const metadata: Metadata = generateSEO({
6
- title: "Create New Project - DeepSite",
7
- description:
8
- "Start building your next website with AI. Create a new project on DeepSite and experience the power of AI-driven web development.",
9
- path: "/new",
10
- });
11
-
12
- export default function NewProjectPage() {
13
- return <AppEditor isNew />;
14
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/sitemap.ts DELETED
@@ -1,28 +0,0 @@
1
- import { MetadataRoute } from 'next';
2
-
3
- export default function sitemap(): MetadataRoute.Sitemap {
4
- const baseUrl = 'https://huggingface.co/deepsite';
5
-
6
- return [
7
- {
8
- url: baseUrl,
9
- lastModified: new Date(),
10
- changeFrequency: 'daily',
11
- priority: 1,
12
- },
13
- {
14
- url: `${baseUrl}/new`,
15
- lastModified: new Date(),
16
- changeFrequency: 'weekly',
17
- priority: 0.8,
18
- },
19
- {
20
- url: `${baseUrl}/auth`,
21
- lastModified: new Date(),
22
- changeFrequency: 'monthly',
23
- priority: 0.5,
24
- },
25
- // Note: Dynamic project routes will be handled by Next.js automatically
26
- // but you can add specific high-priority project pages here if needed
27
- ];
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/deepseek.svg DELETED
assets/globals.css DELETED
@@ -1,380 +0,0 @@
1
- @import "tailwindcss";
2
- @import "tw-animate-css";
3
-
4
- @custom-variant dark (&:is(.dark *));
5
-
6
- @theme inline {
7
- --color-background: var(--background);
8
- --color-foreground: var(--foreground);
9
- --font-sans: var(--font-inter-sans);
10
- --font-mono: var(--font-ptSans-mono);
11
- --color-sidebar-ring: var(--sidebar-ring);
12
- --color-sidebar-border: var(--sidebar-border);
13
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
14
- --color-sidebar-accent: var(--sidebar-accent);
15
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
16
- --color-sidebar-primary: var(--sidebar-primary);
17
- --color-sidebar-foreground: var(--sidebar-foreground);
18
- --color-sidebar: var(--sidebar);
19
- --color-chart-5: var(--chart-5);
20
- --color-chart-4: var(--chart-4);
21
- --color-chart-3: var(--chart-3);
22
- --color-chart-2: var(--chart-2);
23
- --color-chart-1: var(--chart-1);
24
- --color-ring: var(--ring);
25
- --color-input: var(--input);
26
- --color-border: var(--border);
27
- --color-destructive: var(--destructive);
28
- --color-accent-foreground: var(--accent-foreground);
29
- --color-accent: var(--accent);
30
- --color-muted-foreground: var(--muted-foreground);
31
- --color-muted: var(--muted);
32
- --color-secondary-foreground: var(--secondary-foreground);
33
- --color-secondary: var(--secondary);
34
- --color-primary-foreground: var(--primary-foreground);
35
- --color-primary: var(--primary);
36
- --color-popover-foreground: var(--popover-foreground);
37
- --color-popover: var(--popover);
38
- --color-card-foreground: var(--card-foreground);
39
- --color-card: var(--card);
40
- --radius-sm: calc(var(--radius) - 4px);
41
- --radius-md: calc(var(--radius) - 2px);
42
- --radius-lg: var(--radius);
43
- --radius-xl: calc(var(--radius) + 4px);
44
- }
45
-
46
- :root {
47
- --radius: 0.625rem;
48
- --background: oklch(1 0 0);
49
- --foreground: oklch(0.145 0 0);
50
- --card: oklch(1 0 0);
51
- --card-foreground: oklch(0.145 0 0);
52
- --popover: oklch(1 0 0);
53
- --popover-foreground: oklch(0.145 0 0);
54
- --primary: oklch(0.205 0 0);
55
- --primary-foreground: oklch(0.985 0 0);
56
- --secondary: oklch(0.97 0 0);
57
- --secondary-foreground: oklch(0.205 0 0);
58
- --muted: oklch(0.97 0 0);
59
- --muted-foreground: oklch(0.556 0 0);
60
- --accent: oklch(0.97 0 0);
61
- --accent-foreground: oklch(0.205 0 0);
62
- --destructive: oklch(0.577 0.245 27.325);
63
- --border: oklch(0.922 0 0);
64
- --input: oklch(0.922 0 0);
65
- --ring: oklch(0.708 0 0);
66
- --chart-1: oklch(0.646 0.222 41.116);
67
- --chart-2: oklch(0.6 0.118 184.704);
68
- --chart-3: oklch(0.398 0.07 227.392);
69
- --chart-4: oklch(0.828 0.189 84.429);
70
- --chart-5: oklch(0.769 0.188 70.08);
71
- --sidebar: oklch(0.985 0 0);
72
- --sidebar-foreground: oklch(0.145 0 0);
73
- --sidebar-primary: oklch(0.205 0 0);
74
- --sidebar-primary-foreground: oklch(0.985 0 0);
75
- --sidebar-accent: oklch(0.97 0 0);
76
- --sidebar-accent-foreground: oklch(0.205 0 0);
77
- --sidebar-border: oklch(0.922 0 0);
78
- --sidebar-ring: oklch(0.708 0 0);
79
- }
80
-
81
- .dark {
82
- --background: oklch(0.145 0 0);
83
- --foreground: oklch(0.985 0 0);
84
- --card: oklch(0.205 0 0);
85
- --card-foreground: oklch(0.985 0 0);
86
- --popover: oklch(0.205 0 0);
87
- --popover-foreground: oklch(0.985 0 0);
88
- --primary: oklch(0.922 0 0);
89
- --primary-foreground: oklch(0.205 0 0);
90
- --secondary: oklch(0.269 0 0);
91
- --secondary-foreground: oklch(0.985 0 0);
92
- --muted: oklch(0.269 0 0);
93
- --muted-foreground: oklch(0.708 0 0);
94
- --accent: oklch(0.269 0 0);
95
- --accent-foreground: oklch(0.985 0 0);
96
- --destructive: oklch(0.704 0.191 22.216);
97
- --border: oklch(1 0 0 / 10%);
98
- --input: oklch(1 0 0 / 15%);
99
- --ring: oklch(0.556 0 0);
100
- --chart-1: oklch(0.488 0.243 264.376);
101
- --chart-2: oklch(0.696 0.17 162.48);
102
- --chart-3: oklch(0.769 0.188 70.08);
103
- --chart-4: oklch(0.627 0.265 303.9);
104
- --chart-5: oklch(0.645 0.246 16.439);
105
- --sidebar: oklch(0.205 0 0);
106
- --sidebar-foreground: oklch(0.985 0 0);
107
- --sidebar-primary: oklch(0.488 0.243 264.376);
108
- --sidebar-primary-foreground: oklch(0.985 0 0);
109
- --sidebar-accent: oklch(0.269 0 0);
110
- --sidebar-accent-foreground: oklch(0.985 0 0);
111
- --sidebar-border: oklch(1 0 0 / 10%);
112
- --sidebar-ring: oklch(0.556 0 0);
113
- }
114
-
115
- body {
116
- @apply scroll-smooth
117
- }
118
-
119
- @layer base {
120
- * {
121
- @apply border-border outline-ring/50;
122
- }
123
- body {
124
- @apply bg-background text-foreground;
125
- }
126
- html {
127
- @apply scroll-smooth;
128
- }
129
- }
130
-
131
- .background__noisy {
132
- @apply bg-blend-normal pointer-events-none opacity-90;
133
- background-size: 25ww auto;
134
- background-image: url("/deepsite/background_noisy.webp");
135
- @apply fixed w-screen h-screen -z-1 top-0 left-0;
136
- }
137
-
138
- .monaco-editor .margin {
139
- @apply !bg-neutral-900;
140
- }
141
- .monaco-editor .monaco-editor-background {
142
- @apply !bg-neutral-900;
143
- }
144
- .monaco-editor .line-numbers {
145
- @apply !text-neutral-500;
146
- }
147
-
148
- .matched-line {
149
- @apply bg-sky-500/30;
150
- }
151
-
152
- /* Fast liquid deformation animations */
153
- @keyframes liquidBlob1 {
154
- 0%, 100% {
155
- border-radius: 40% 60% 50% 50%;
156
- transform: scaleX(1) scaleY(1) rotate(0deg);
157
- }
158
- 12.5% {
159
- border-radius: 20% 80% 70% 30%;
160
- transform: scaleX(1.6) scaleY(0.4) rotate(25deg);
161
- }
162
- 25% {
163
- border-radius: 80% 20% 30% 70%;
164
- transform: scaleX(0.5) scaleY(2.1) rotate(-15deg);
165
- }
166
- 37.5% {
167
- border-radius: 30% 70% 80% 20%;
168
- transform: scaleX(1.8) scaleY(0.6) rotate(40deg);
169
- }
170
- 50% {
171
- border-radius: 70% 30% 20% 80%;
172
- transform: scaleX(0.4) scaleY(1.9) rotate(-30deg);
173
- }
174
- 62.5% {
175
- border-radius: 25% 75% 60% 40%;
176
- transform: scaleX(1.5) scaleY(0.7) rotate(55deg);
177
- }
178
- 75% {
179
- border-radius: 75% 25% 40% 60%;
180
- transform: scaleX(0.6) scaleY(1.7) rotate(-10deg);
181
- }
182
- 87.5% {
183
- border-radius: 50% 50% 75% 25%;
184
- transform: scaleX(1.3) scaleY(0.8) rotate(35deg);
185
- }
186
- }
187
-
188
- @keyframes liquidBlob2 {
189
- 0%, 100% {
190
- border-radius: 60% 40% 50% 50%;
191
- transform: scaleX(1) scaleY(1) rotate(12deg);
192
- }
193
- 16% {
194
- border-radius: 15% 85% 60% 40%;
195
- transform: scaleX(0.3) scaleY(2.3) rotate(50deg);
196
- }
197
- 32% {
198
- border-radius: 85% 15% 25% 75%;
199
- transform: scaleX(2.0) scaleY(0.5) rotate(-20deg);
200
- }
201
- 48% {
202
- border-radius: 30% 70% 85% 15%;
203
- transform: scaleX(0.4) scaleY(1.8) rotate(70deg);
204
- }
205
- 64% {
206
- border-radius: 70% 30% 15% 85%;
207
- transform: scaleX(1.9) scaleY(0.6) rotate(-35deg);
208
- }
209
- 80% {
210
- border-radius: 40% 60% 70% 30%;
211
- transform: scaleX(0.7) scaleY(1.6) rotate(45deg);
212
- }
213
- }
214
-
215
- @keyframes liquidBlob3 {
216
- 0%, 100% {
217
- border-radius: 50% 50% 40% 60%;
218
- transform: scaleX(1) scaleY(1) rotate(0deg);
219
- }
220
- 20% {
221
- border-radius: 10% 90% 75% 25%;
222
- transform: scaleX(2.2) scaleY(0.3) rotate(-45deg);
223
- }
224
- 40% {
225
- border-radius: 90% 10% 20% 80%;
226
- transform: scaleX(0.4) scaleY(2.5) rotate(60deg);
227
- }
228
- 60% {
229
- border-radius: 25% 75% 90% 10%;
230
- transform: scaleX(1.7) scaleY(0.5) rotate(-25deg);
231
- }
232
- 80% {
233
- border-radius: 75% 25% 10% 90%;
234
- transform: scaleX(0.6) scaleY(2.0) rotate(80deg);
235
- }
236
- }
237
-
238
- @keyframes liquidBlob4 {
239
- 0%, 100% {
240
- border-radius: 45% 55% 50% 50%;
241
- transform: scaleX(1) scaleY(1) rotate(-15deg);
242
- }
243
- 14% {
244
- border-radius: 90% 10% 65% 35%;
245
- transform: scaleX(0.2) scaleY(2.8) rotate(35deg);
246
- }
247
- 28% {
248
- border-radius: 10% 90% 20% 80%;
249
- transform: scaleX(2.4) scaleY(0.4) rotate(-50deg);
250
- }
251
- 42% {
252
- border-radius: 35% 65% 90% 10%;
253
- transform: scaleX(0.3) scaleY(2.1) rotate(70deg);
254
- }
255
- 56% {
256
- border-radius: 80% 20% 10% 90%;
257
- transform: scaleX(2.0) scaleY(0.5) rotate(-40deg);
258
- }
259
- 70% {
260
- border-radius: 20% 80% 55% 45%;
261
- transform: scaleX(0.5) scaleY(1.9) rotate(55deg);
262
- }
263
- 84% {
264
- border-radius: 65% 35% 80% 20%;
265
- transform: scaleX(1.6) scaleY(0.6) rotate(-25deg);
266
- }
267
- }
268
-
269
- /* Fast flowing movement animations */
270
- @keyframes liquidFlow1 {
271
- 0%, 100% { transform: translate(0, 0); }
272
- 16% { transform: translate(60px, -40px); }
273
- 32% { transform: translate(-45px, -70px); }
274
- 48% { transform: translate(80px, 25px); }
275
- 64% { transform: translate(-30px, 60px); }
276
- 80% { transform: translate(50px, -20px); }
277
- }
278
-
279
- @keyframes liquidFlow2 {
280
- 0%, 100% { transform: translate(0, 0); }
281
- 20% { transform: translate(-70px, 50px); }
282
- 40% { transform: translate(90px, -30px); }
283
- 60% { transform: translate(-40px, -55px); }
284
- 80% { transform: translate(65px, 35px); }
285
- }
286
-
287
- @keyframes liquidFlow3 {
288
- 0%, 100% { transform: translate(0, 0); }
289
- 12% { transform: translate(-50px, -60px); }
290
- 24% { transform: translate(40px, -20px); }
291
- 36% { transform: translate(-30px, 70px); }
292
- 48% { transform: translate(70px, 20px); }
293
- 60% { transform: translate(-60px, -35px); }
294
- 72% { transform: translate(35px, 55px); }
295
- 84% { transform: translate(-25px, -45px); }
296
- }
297
-
298
- @keyframes liquidFlow4 {
299
- 0%, 100% { transform: translate(0, 0); }
300
- 14% { transform: translate(50px, 60px); }
301
- 28% { transform: translate(-80px, -40px); }
302
- 42% { transform: translate(30px, -90px); }
303
- 56% { transform: translate(-55px, 45px); }
304
- 70% { transform: translate(75px, -25px); }
305
- 84% { transform: translate(-35px, 65px); }
306
- }
307
-
308
- /* Light sweep animation for buttons */
309
- @keyframes lightSweep {
310
- 0% {
311
- transform: translateX(-150%);
312
- opacity: 0;
313
- }
314
- 8% {
315
- opacity: 0.3;
316
- }
317
- 25% {
318
- opacity: 0.8;
319
- }
320
- 42% {
321
- opacity: 0.3;
322
- }
323
- 50% {
324
- transform: translateX(150%);
325
- opacity: 0;
326
- }
327
- 58% {
328
- opacity: 0.3;
329
- }
330
- 75% {
331
- opacity: 0.8;
332
- }
333
- 92% {
334
- opacity: 0.3;
335
- }
336
- 100% {
337
- transform: translateX(-150%);
338
- opacity: 0;
339
- }
340
- }
341
-
342
- .light-sweep {
343
- position: relative;
344
- overflow: hidden;
345
- }
346
-
347
- .light-sweep::before {
348
- content: '';
349
- position: absolute;
350
- top: 0;
351
- left: 0;
352
- right: 0;
353
- bottom: 0;
354
- width: 300%;
355
- background: linear-gradient(
356
- 90deg,
357
- transparent 0%,
358
- transparent 20%,
359
- rgba(56, 189, 248, 0.1) 35%,
360
- rgba(56, 189, 248, 0.2) 45%,
361
- rgba(255, 255, 255, 0.2) 50%,
362
- rgba(168, 85, 247, 0.2) 55%,
363
- rgba(168, 85, 247, 0.1) 65%,
364
- transparent 80%,
365
- transparent 100%
366
- );
367
- animation: lightSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
368
- pointer-events: none;
369
- z-index: 1;
370
- filter: blur(1px);
371
- }
372
-
373
- .transparent-scroll {
374
- scrollbar-width: none; /* Firefox */
375
- -ms-overflow-style: none; /* IE and Edge */
376
- }
377
-
378
- .transparent-scroll::-webkit-scrollbar {
379
- display: none; /* Chrome, Safari, Opera */
380
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/kimi.svg DELETED
assets/logo.svg DELETED
assets/minimax.svg DELETED
assets/qwen.svg DELETED
assets/zai.svg DELETED
components.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema.json",
3
- "style": "new-york",
4
- "rsc": true,
5
- "tsx": true,
6
- "tailwind": {
7
- "config": "",
8
- "css": "assets/globals.css",
9
- "baseColor": "neutral",
10
- "cssVariables": true,
11
- "prefix": ""
12
- },
13
- "aliases": {
14
- "components": "@/components",
15
- "utils": "@/lib/utils",
16
- "ui": "@/components/ui",
17
- "lib": "@/lib",
18
- "hooks": "@/hooks"
19
- },
20
- "iconLibrary": "lucide"
21
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/animated-blobs/index.tsx DELETED
@@ -1,34 +0,0 @@
1
- export function AnimatedBlobs() {
2
- return (
3
- <div className="absolute inset-0 pointer-events-none -z-[1]">
4
- <div
5
- className="w-full h-full bg-gradient-to-r from-purple-500 to-pink-500 opacity-10 blur-3xl"
6
- style={{
7
- animation:
8
- "liquidBlob1 4s ease-in-out infinite, liquidFlow1 6s ease-in-out infinite",
9
- }}
10
- />
11
- <div
12
- className="w-2/3 h-3/4 bg-gradient-to-r from-blue-500 to-teal-500 opacity-24 blur-3xl absolute -top-20 right-10"
13
- style={{
14
- animation:
15
- "liquidBlob2 5s ease-in-out infinite, liquidFlow2 7s ease-in-out infinite",
16
- }}
17
- />
18
- <div
19
- className="w-1/2 h-1/2 bg-gradient-to-r from-amber-500 to-rose-500 opacity-20 blur-3xl absolute bottom-0 left-10"
20
- style={{
21
- animation:
22
- "liquidBlob3 3.5s ease-in-out infinite, liquidFlow3 8s ease-in-out infinite",
23
- }}
24
- />
25
- <div
26
- className="w-48 h-48 bg-gradient-to-r from-cyan-500 to-indigo-500 opacity-20 blur-3xl absolute top-1/3 right-1/3"
27
- style={{
28
- animation:
29
- "liquidBlob4 4.5s ease-in-out infinite, liquidFlow4 6.5s ease-in-out infinite",
30
- }}
31
- />
32
- </div>
33
- );
34
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/animated-text/index.tsx DELETED
@@ -1,123 +0,0 @@
1
- "use client";
2
-
3
- import { useState, useEffect } from "react";
4
-
5
- interface AnimatedTextProps {
6
- className?: string;
7
- }
8
-
9
- export function AnimatedText({ className = "" }: AnimatedTextProps) {
10
- const [displayText, setDisplayText] = useState("");
11
- const [currentSuggestionIndex, setCurrentSuggestionIndex] = useState(0);
12
- const [isTyping, setIsTyping] = useState(true);
13
- const [showCursor, setShowCursor] = useState(true);
14
- const [lastTypedIndex, setLastTypedIndex] = useState(-1);
15
- const [animationComplete, setAnimationComplete] = useState(false);
16
-
17
- // Randomize suggestions on each component mount
18
- const [suggestions] = useState(() => {
19
- const baseSuggestions = [
20
- "create a stunning portfolio!",
21
- "build a tic tac toe game!",
22
- "design a website for my restaurant!",
23
- "make a sleek landing page!",
24
- "build an e-commerce store!",
25
- "create a personal blog!",
26
- "develop a modern dashboard!",
27
- "design a company website!",
28
- "build a todo app!",
29
- "create an online gallery!",
30
- "make a contact form!",
31
- "build a weather app!",
32
- ];
33
-
34
- // Fisher-Yates shuffle algorithm
35
- const shuffled = [...baseSuggestions];
36
- for (let i = shuffled.length - 1; i > 0; i--) {
37
- const j = Math.floor(Math.random() * (i + 1));
38
- [shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]];
39
- }
40
-
41
- return shuffled;
42
- });
43
-
44
- useEffect(() => {
45
- if (animationComplete) return;
46
-
47
- let timeout: NodeJS.Timeout;
48
-
49
- const typeText = () => {
50
- const currentSuggestion = suggestions[currentSuggestionIndex];
51
-
52
- if (isTyping) {
53
- if (displayText.length < currentSuggestion.length) {
54
- setDisplayText(currentSuggestion.slice(0, displayText.length + 1));
55
- setLastTypedIndex(displayText.length);
56
- timeout = setTimeout(typeText, 80);
57
- } else {
58
- // Finished typing, wait then start erasing
59
- setLastTypedIndex(-1);
60
- timeout = setTimeout(() => {
61
- setIsTyping(false);
62
- }, 2000);
63
- }
64
- }
65
- };
66
-
67
- timeout = setTimeout(typeText, 100);
68
- return () => clearTimeout(timeout);
69
- }, [
70
- displayText,
71
- currentSuggestionIndex,
72
- isTyping,
73
- suggestions,
74
- animationComplete,
75
- ]);
76
-
77
- // Cursor blinking effect
78
- useEffect(() => {
79
- if (animationComplete) {
80
- setShowCursor(false);
81
- return;
82
- }
83
-
84
- const cursorInterval = setInterval(() => {
85
- setShowCursor((prev) => !prev);
86
- }, 600);
87
-
88
- return () => clearInterval(cursorInterval);
89
- }, [animationComplete]);
90
-
91
- useEffect(() => {
92
- if (lastTypedIndex >= 0) {
93
- const timeout = setTimeout(() => {
94
- setLastTypedIndex(-1);
95
- }, 400);
96
-
97
- return () => clearTimeout(timeout);
98
- }
99
- }, [lastTypedIndex]);
100
-
101
- return (
102
- <p className={`font-mono ${className}`}>
103
- Hey DeepSite,&nbsp;
104
- {displayText.split("").map((char, index) => (
105
- <span
106
- key={`${currentSuggestionIndex}-${index}`}
107
- className={`transition-colors duration-300 ${
108
- index === lastTypedIndex ? "text-neutral-100" : ""
109
- }`}
110
- >
111
- {char}
112
- </span>
113
- ))}
114
- <span
115
- className={`${
116
- showCursor ? "opacity-100" : "opacity-0"
117
- } transition-opacity`}
118
- >
119
- |
120
- </span>
121
- </p>
122
- );
123
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/contexts/app-context.tsx DELETED
@@ -1,52 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- "use client";
3
- import { useMount } from "react-use";
4
- import { toast } from "sonner";
5
- import { usePathname, useRouter } from "next/navigation";
6
-
7
- import { useUser } from "@/hooks/useUser";
8
- import { ProjectType, User } from "@/types";
9
- import { useBroadcastChannel } from "@/lib/useBroadcastChannel";
10
-
11
- export default function AppContext({
12
- children,
13
- }: // me: initialData,
14
- {
15
- children: React.ReactNode;
16
- // me?: {
17
- // user: User | null;
18
- // projects: ProjectType[];
19
- // errCode: number | null;
20
- // };
21
- }) {
22
- const { loginFromCode, user, logout, loading, errCode } = useUser();
23
- const pathname = usePathname();
24
- const router = useRouter();
25
-
26
- // useMount(() => {
27
- // if (!initialData?.user && !user) {
28
- // if ([401, 403].includes(errCode as number)) {
29
- // logout();
30
- // } else if (pathname.includes("/spaces")) {
31
- // if (errCode) {
32
- // toast.error("An error occured while trying to log in");
33
- // }
34
- // // If we did not manage to log in (probs because api is down), we simply redirect to the home page
35
- // router.push("/");
36
- // }
37
- // }
38
- // });
39
-
40
- const events: any = {};
41
-
42
- useBroadcastChannel("auth", (message) => {
43
- if (pathname.includes("/auth/callback")) return;
44
-
45
- if (!message.code) return;
46
- if (message.type === "user-oauth" && message?.code && !events.code) {
47
- loginFromCode(message.code);
48
- }
49
- });
50
-
51
- return children;
52
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/contexts/login-context.tsx DELETED
@@ -1,62 +0,0 @@
1
- "use client";
2
-
3
- import React, { createContext, useContext, useState, ReactNode } from "react";
4
- import { LoginModal } from "@/components/login-modal";
5
- import { Page } from "@/types";
6
-
7
- interface LoginContextType {
8
- isOpen: boolean;
9
- openLoginModal: (options?: LoginModalOptions) => void;
10
- closeLoginModal: () => void;
11
- }
12
-
13
- interface LoginModalOptions {
14
- pages?: Page[];
15
- title?: string;
16
- prompt?: string;
17
- description?: string;
18
- }
19
-
20
- const LoginContext = createContext<LoginContextType | undefined>(undefined);
21
-
22
- export function LoginProvider({ children }: { children: ReactNode }) {
23
- const [isOpen, setIsOpen] = useState(false);
24
- const [modalOptions, setModalOptions] = useState<LoginModalOptions>({});
25
-
26
- const openLoginModal = (options: LoginModalOptions = {}) => {
27
- setModalOptions(options);
28
- setIsOpen(true);
29
- };
30
-
31
- const closeLoginModal = () => {
32
- setIsOpen(false);
33
- setModalOptions({});
34
- };
35
-
36
- const value = {
37
- isOpen,
38
- openLoginModal,
39
- closeLoginModal,
40
- };
41
-
42
- return (
43
- <LoginContext.Provider value={value}>
44
- {children}
45
- <LoginModal
46
- open={isOpen}
47
- onClose={setIsOpen}
48
- title={modalOptions.title}
49
- prompt={modalOptions.prompt}
50
- description={modalOptions.description}
51
- />
52
- </LoginContext.Provider>
53
- );
54
- }
55
-
56
- export function useLoginModal() {
57
- const context = useContext(LoginContext);
58
- if (context === undefined) {
59
- throw new Error("useLoginModal must be used within a LoginProvider");
60
- }
61
- return context;
62
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/contexts/pro-context.tsx DELETED
@@ -1,48 +0,0 @@
1
- "use client";
2
-
3
- import React, { createContext, useContext, useState, ReactNode } from "react";
4
- import { ProModal } from "@/components/pro-modal";
5
- import { Page } from "@/types";
6
- import { useEditor } from "@/hooks/useEditor";
7
-
8
- interface ProContextType {
9
- isOpen: boolean;
10
- openProModal: (pages: Page[]) => void;
11
- closeProModal: () => void;
12
- }
13
-
14
- const ProContext = createContext<ProContextType | undefined>(undefined);
15
-
16
- export function ProProvider({ children }: { children: ReactNode }) {
17
- const [isOpen, setIsOpen] = useState(false);
18
- const { pages } = useEditor();
19
-
20
- const openProModal = () => {
21
- setIsOpen(true);
22
- };
23
-
24
- const closeProModal = () => {
25
- setIsOpen(false);
26
- };
27
-
28
- const value = {
29
- isOpen,
30
- openProModal,
31
- closeProModal,
32
- };
33
-
34
- return (
35
- <ProContext.Provider value={value}>
36
- {children}
37
- <ProModal open={isOpen} onClose={setIsOpen} pages={pages} />
38
- </ProContext.Provider>
39
- );
40
- }
41
-
42
- export function useProModal() {
43
- const context = useContext(ProContext);
44
- if (context === undefined) {
45
- throw new Error("useProModal must be used within a ProProvider");
46
- }
47
- return context;
48
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/contexts/tanstack-query-context.tsx DELETED
@@ -1,31 +0,0 @@
1
- "use client";
2
-
3
- import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
4
- import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
5
- import { useState } from "react";
6
-
7
- export default function TanstackContext({
8
- children,
9
- }: {
10
- children: React.ReactNode;
11
- }) {
12
- // Create QueryClient instance only once using useState with a function
13
- const [queryClient] = useState(
14
- () =>
15
- new QueryClient({
16
- defaultOptions: {
17
- queries: {
18
- staleTime: 60 * 1000, // 1 minute
19
- refetchOnWindowFocus: false,
20
- },
21
- },
22
- })
23
- );
24
-
25
- return (
26
- <QueryClientProvider client={queryClient}>
27
- {children}
28
- <ReactQueryDevtools initialIsOpen={false} />
29
- </QueryClientProvider>
30
- );
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/contexts/user-context.tsx DELETED
@@ -1,8 +0,0 @@
1
- "use client";
2
-
3
- import { createContext } from "react";
4
- import { User } from "@/types";
5
-
6
- export const UserContext = createContext({
7
- user: undefined as User | undefined,
8
- });
 
 
 
 
 
 
 
 
 
components/discord-promo-modal/index.tsx DELETED
@@ -1,225 +0,0 @@
1
- "use client";
2
-
3
- import { useEffect, useState } from "react";
4
- import { useLocalStorage } from "react-use";
5
- import Image from "next/image";
6
- import { Button } from "@/components/ui/button";
7
- import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog";
8
- import { DiscordIcon } from "@/components/icons/discord";
9
- import Logo from "@/assets/logo.svg";
10
-
11
- const DISCORD_PROMO_KEY = "discord-promo-dismissed";
12
- const DISCORD_URL = "https://discord.gg/KpanwM3vXa";
13
-
14
- const Sparkle = ({
15
- size = "w-3 h-3",
16
- delay = "0s",
17
- top = "20%",
18
- left = "20%",
19
- }: {
20
- size?: string;
21
- delay?: string;
22
- top?: string;
23
- left?: string;
24
- }) => (
25
- <div
26
- className={`absolute ${size}`}
27
- style={{ top, left, animationDelay: delay }}
28
- >
29
- <svg
30
- viewBox="0 0 24 24"
31
- fill="none"
32
- xmlns="http://www.w3.org/2000/svg"
33
- className="w-full h-full animate-sparkle"
34
- >
35
- <path
36
- d="M12 0L13.5 8.5L22 10L13.5 11.5L12 20L10.5 11.5L2 10L10.5 8.5L12 0Z"
37
- fill="url(#sparkle-gradient)"
38
- />
39
- <defs>
40
- <linearGradient id="sparkle-gradient" x1="2" y1="10" x2="22" y2="10">
41
- <stop offset="0%" stopColor="#818cf8" />
42
- <stop offset="100%" stopColor="#a5b4fc" />
43
- </linearGradient>
44
- </defs>
45
- </svg>
46
- </div>
47
- );
48
-
49
- export const DiscordPromoModal = () => {
50
- const [open, setOpen] = useState(false);
51
- const [dismissed, setDismissed] = useLocalStorage<boolean>(
52
- DISCORD_PROMO_KEY,
53
- false
54
- );
55
-
56
- useEffect(() => {
57
- const cookieDismissed = document.cookie
58
- .split("; ")
59
- .find((row) => row.startsWith(`${DISCORD_PROMO_KEY}=`))
60
- ?.split("=")[1];
61
-
62
- if (dismissed || cookieDismissed === "true") {
63
- return;
64
- }
65
-
66
- const timer = setTimeout(() => {
67
- setOpen(true);
68
- }, 60000);
69
-
70
- return () => clearTimeout(timer);
71
- }, [dismissed]);
72
-
73
- const handleClose = () => {
74
- setOpen(false);
75
- setDismissed(true);
76
-
77
- const expiryDate = new Date();
78
- expiryDate.setDate(expiryDate.getDate() + 5);
79
- document.cookie = `${DISCORD_PROMO_KEY}=true; expires=${expiryDate.toUTCString()}; path=/; SameSite=Lax`;
80
- };
81
-
82
- const handleJoinDiscord = () => {
83
- window.open(DISCORD_URL, "_blank");
84
- handleClose();
85
- };
86
-
87
- return (
88
- <Dialog open={open} onOpenChange={handleClose}>
89
- <DialogContent
90
- className="sm:max-w-[480px] lg:!p-0 !rounded-3xl !bg-gradient-to-b !from-indigo-950/40 !via-neutral-900 !to-neutral-900 !border !border-neutral-800 overflow-hidden"
91
- showCloseButton={true}
92
- >
93
- <DialogTitle className="hidden" />
94
-
95
- <div className="relative">
96
- <div className="absolute inset-0 bg-gradient-to-br from-indigo-500/10 via-indigo-500/5 to-transparent pointer-events-none" />
97
-
98
- <div className="absolute inset-x-0 top-0 h-48 overflow-hidden pointer-events-none">
99
- <Sparkle size="w-2 h-2" delay="0s" top="15%" left="15%" />
100
- <Sparkle size="w-3 h-3" delay="0.5s" top="25%" left="75%" />
101
- <Sparkle size="w-2 h-2" delay="1s" top="35%" left="20%" />
102
- <Sparkle size="w-4 h-4" delay="1.5s" top="10%" left="80%" />
103
- <Sparkle size="w-2 h-2" delay="2s" top="30%" left="85%" />
104
- </div>
105
-
106
- <div className="relative pt-12 pb-8">
107
- <div className="relative z-10 flex justify-center">
108
- <div className="relative">
109
- <div className="absolute inset-0 bg-gradient-to-br from-indigo-400 via-indigo-500 to-indigo-600 rounded-full blur-md opacity-50" />
110
- <div className="relative w-32 h-32 rounded-full bg-gradient-to-br from-neutral-900 via-neutral-800 to-neutral-900 p-1 shadow-2xl">
111
- <div className="w-full h-full rounded-full bg-neutral-900 flex items-center justify-center overflow-hidden">
112
- <div className="relative w-20 h-20 bg-gradient-to-br from-indigo-500 to-indigo-600 rounded-full flex items-center justify-center">
113
- <DiscordIcon className="w-12 h-12 text-white" />
114
- </div>
115
- </div>
116
- </div>
117
-
118
- <div className="absolute -bottom-2 -right-2 bg-gradient-to-br from-indigo-500 to-indigo-600 rounded-full p-0.5 shadow-xl border-2 border-neutral-900">
119
- <div className="w-10 h-10 bg-neutral-900 rounded-full flex items-center justify-center">
120
- <Image
121
- src={Logo}
122
- alt="DeepSite"
123
- width={20}
124
- height={20}
125
- className="w-5 h-5"
126
- />
127
- </div>
128
- </div>
129
- </div>
130
- </div>
131
- </div>
132
-
133
- <main className="px-8 pb-8 pt-4">
134
- <div className="text-center mb-6">
135
- <h2 className="text-2xl font-bold text-white mb-2">
136
- Ready to level up your DeepSite experience?
137
- </h2>
138
- <p className="text-neutral-400 text-sm">
139
- Get help, share your projects and ask for suggestions!
140
- </p>
141
- </div>
142
-
143
- <div className="flex flex-col gap-3 mb-6">
144
- {[
145
- "Get exclusive preview to new features",
146
- "Share your projects and get feedback",
147
- "Priority support from the team",
148
- "Enjoy real-time updates",
149
- ].map((benefit, index) => (
150
- <div
151
- key={index}
152
- className="flex items-start gap-3 text-neutral-200"
153
- style={{
154
- animation: `fadeIn 0.4s ease-out ${index * 0.1}s both`,
155
- }}
156
- >
157
- <div className="flex-shrink-0 w-5 h-5 rounded-full bg-gradient-to-br from-indigo-500 to-indigo-600 flex items-center justify-center mt-0.5">
158
- <svg
159
- className="w-3 h-3 text-white"
160
- fill="none"
161
- viewBox="0 0 24 24"
162
- stroke="currentColor"
163
- >
164
- <path
165
- strokeLinecap="round"
166
- strokeLinejoin="round"
167
- strokeWidth={3}
168
- d="M5 13l4 4L19 7"
169
- />
170
- </svg>
171
- </div>
172
- <span className="text-sm leading-6">{benefit}</span>
173
- </div>
174
- ))}
175
- </div>
176
-
177
- {/* CTA Button */}
178
- <div className="flex flex-col gap-3 w-full">
179
- <Button
180
- onClick={handleJoinDiscord}
181
- className="w-full !h-12 !text-base font-semibold !bg-gradient-to-r !from-indigo-500 !to-indigo-600 hover:!from-indigo-600 hover:!to-indigo-700 !text-white !border-0 transform hover:scale-[1.02] transition-all duration-200 shadow-lg shadow-indigo-500/25"
182
- >
183
- <DiscordIcon className="w-5 h-5 mr-2" />
184
- Join Discord Community
185
- </Button>
186
-
187
- <p className="text-center text-xs text-neutral-500">
188
- Free to join. Connect instantly.
189
- </p>
190
- </div>
191
- </main>
192
- </div>
193
-
194
- <style jsx>{`
195
- @keyframes fadeIn {
196
- from {
197
- opacity: 0;
198
- transform: translateY(5px);
199
- }
200
- to {
201
- opacity: 1;
202
- transform: translateY(0);
203
- }
204
- }
205
-
206
- @keyframes sparkle {
207
- 0%,
208
- 100% {
209
- opacity: 0;
210
- transform: scale(0) rotate(0deg);
211
- }
212
- 50% {
213
- opacity: 1;
214
- transform: scale(1) rotate(180deg);
215
- }
216
- }
217
-
218
- :global(.animate-sparkle) {
219
- animation: sparkle 2s ease-in-out infinite;
220
- }
221
- `}</style>
222
- </DialogContent>
223
- </Dialog>
224
- );
225
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/editor/ask-ai/context.tsx DELETED
@@ -1,128 +0,0 @@
1
- import { useState, useMemo } from "react";
2
- import { FileCode, FileText, Braces, AtSign } from "lucide-react";
3
-
4
- import { Button } from "@/components/ui/button";
5
- import { useEditor } from "@/hooks/useEditor";
6
- import { useAi } from "@/hooks/useAi";
7
- import {
8
- Popover,
9
- PopoverContent,
10
- PopoverTrigger,
11
- } from "@/components/ui/popover";
12
- import classNames from "classnames";
13
-
14
- export const Context = () => {
15
- const { pages, currentPage, globalEditorLoading } = useEditor();
16
- const { contextFile, setContextFile, globalAiLoading } = useAi();
17
- const [open, setOpen] = useState(false);
18
-
19
- const selectedFile = contextFile || null;
20
-
21
- const getFileIcon = (filePath: string, size = "size-3.5") => {
22
- if (filePath.endsWith(".css")) {
23
- return <Braces className={size} />;
24
- } else if (filePath.endsWith(".js")) {
25
- return <FileCode className={size} />;
26
- } else if (filePath.endsWith(".json")) {
27
- return <Braces className={size} />;
28
- } else {
29
- return <FileText className={size} />;
30
- }
31
- };
32
-
33
- const buttonContent = useMemo(() => {
34
- if (selectedFile) {
35
- return (
36
- <>
37
- <span className="truncate max-w-[120px]">{selectedFile}</span>
38
- </>
39
- );
40
- }
41
- return <>Add Context</>;
42
- }, [selectedFile]);
43
-
44
- return (
45
- <Popover open={open} onOpenChange={setOpen}>
46
- <PopoverTrigger asChild>
47
- <Button
48
- size="xs"
49
- variant={open ? "default" : "outline"}
50
- className={classNames("!rounded-md", {
51
- "!bg-blue-500/10 !border-blue-500/30 !text-blue-400":
52
- selectedFile && selectedFile.endsWith(".css"),
53
- "!bg-orange-500/10 !border-orange-500/30 !text-orange-400":
54
- selectedFile && selectedFile.endsWith(".html"),
55
- "!bg-amber-500/10 !border-amber-500/30 !text-amber-400":
56
- selectedFile && selectedFile.endsWith(".js"),
57
- "!bg-yellow-500/10 !border-yellow-500/30 !text-yellow-400":
58
- selectedFile && selectedFile.endsWith(".json"),
59
- })}
60
- disabled={
61
- globalAiLoading || globalEditorLoading || pages.length === 0
62
- }
63
- >
64
- <AtSign className="size-3.5" />
65
-
66
- {buttonContent}
67
- </Button>
68
- </PopoverTrigger>
69
- <PopoverContent
70
- align="start"
71
- className="w-64 !bg-neutral-900 !border-neutral-800 !p-0 !rounded-2xl overflow-hidden"
72
- >
73
- <header className="flex items-center justify-center text-xs px-2 py-2.5 border-b gap-2 bg-neutral-950 border-neutral-800 font-semibold text-neutral-200">
74
- Select a file to send as context
75
- </header>
76
- <main className="space-y-1 p-2">
77
- <div className="max-h-[200px] overflow-y-auto space-y-0.5">
78
- {pages.length === 0 ? (
79
- <div className="px-2 py-2 text-xs text-neutral-500">
80
- No files available
81
- </div>
82
- ) : (
83
- <>
84
- <button
85
- onClick={() => {
86
- setContextFile(null);
87
- setOpen(false);
88
- }}
89
- className={`cursor-pointer w-full px-2 py-1.5 text-xs text-left rounded-md hover:bg-neutral-800 transition-colors ${
90
- !selectedFile
91
- ? "bg-neutral-800 text-neutral-200 font-medium"
92
- : "text-neutral-400 hover:text-neutral-200"
93
- }`}
94
- >
95
- All files (default)
96
- </button>
97
- {pages.map((page) => (
98
- <button
99
- key={page.path}
100
- onClick={() => {
101
- setContextFile(page.path);
102
- setOpen(false);
103
- }}
104
- className={`cursor-pointer w-full px-2 py-1.5 text-xs text-left rounded-md hover:bg-neutral-800 transition-colors flex items-center gap-1.5 ${
105
- selectedFile === page.path
106
- ? "bg-neutral-800 text-neutral-200 font-medium"
107
- : "text-neutral-400 hover:text-neutral-200"
108
- }`}
109
- >
110
- <span className="shrink-0">
111
- {getFileIcon(page.path, "size-3")}
112
- </span>
113
- <span className="truncate flex-1">{page.path}</span>
114
- {page.path === currentPage && (
115
- <span className="text-[10px] text-neutral-500 shrink-0">
116
- (current)
117
- </span>
118
- )}
119
- </button>
120
- ))}
121
- </>
122
- )}
123
- </div>
124
- </main>
125
- </PopoverContent>
126
- </Popover>
127
- );
128
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
components/editor/ask-ai/fake-ask.tsx DELETED
@@ -1,97 +0,0 @@
1
- import { useState } from "react";
2
- import { useLocalStorage } from "react-use";
3
- import { ArrowUp, Dice6 } from "lucide-react";
4
- import { useRouter } from "next/navigation";
5
-
6
- import { Button } from "@/components/ui/button";
7
- import { PromptBuilder } from "./prompt-builder";
8
- import { EnhancedSettings } from "@/types";
9
- import { Settings } from "./settings";
10
- import classNames from "classnames";
11
- import { PROMPTS_FOR_AI } from "@/lib/prompts";
12
-
13
- export const FakeAskAi = () => {
14
- const router = useRouter();
15
- const [prompt, setPrompt] = useState("");
16
- const [openProvider, setOpenProvider] = useState(false);
17
- const [enhancedSettings, setEnhancedSettings, removeEnhancedSettings] =
18
- useLocalStorage<EnhancedSettings>("deepsite-enhancedSettings", {
19
- isActive: true,
20
- primaryColor: undefined,
21
- secondaryColor: undefined,
22
- theme: undefined,
23
- });
24
- const [, setPromptStorage] = useLocalStorage("prompt", "");
25
- const [randomPromptLoading, setRandomPromptLoading] = useState(false);
26
-
27
- const callAi = async () => {
28
- setPromptStorage(prompt);
29
- router.push("/new");
30
- };
31
-
32
- const randomPrompt = () => {
33
- setRandomPromptLoading(true);
34
- setTimeout(() => {
35
- setPrompt(
36
- PROMPTS_FOR_AI[Math.floor(Math.random() * PROMPTS_FOR_AI.length)]
37
- );
38
- setRandomPromptLoading(false);
39
- }, 400);
40
- };
41
-
42
- return (
43
- <div className="p-3 w-full max-w-xl mx-auto">
44
- <div className="relative bg-neutral-800 border border-neutral-700 rounded-2xl ring-[4px] focus-within:ring-neutral-500/30 focus-within:border-neutral-600 ring-transparent z-20 w-full group">
45
- <div className="w-full relative flex items-start justify-between pr-4 pt-4">
46
- <textarea
47
- className="w-full bg-transparent text-sm outline-none text-white placeholder:text-neutral-400 px-4 pb-4 resize-none"
48
- placeholder="Ask DeepSite anything..."
49
- value={prompt}
50
- onChange={(e) => setPrompt(e.target.value)}
51
- onKeyDown={(e) => {
52
- if (e.key === "Enter" && !e.shiftKey) {
53
- callAi();
54
- }
55
- }}
56
- />
57
- <Button
58
- size="iconXs"
59
- variant="outline"
60
- className="!rounded-md"
61
- onClick={() => randomPrompt()}
62
- >
63
- <Dice6
64
- className={classNames("size-4", {
65
- "animate-spin animation-duration-500": randomPromptLoading,
66
- })}
67
- />
68
- </Button>
69
- </div>
70
- <div className="flex items-center justify-between gap-2 px-4 pb-3 mt-2">
71
- <div className="flex-1 flex items-center justify-start gap-1.5 flex-wrap">
72
- <PromptBuilder
73
- enhancedSettings={enhancedSettings!}
74
- setEnhancedSettings={setEnhancedSettings}
75
- />
76
- <Settings
77
- open={openProvider}
78
- isFollowUp={false}
79
- error=""
80
- onClose={setOpenProvider}
81
- />
82
- </div>
83
- <div className="flex items-center justify-end gap-2">
84
- <Button
85
- size="iconXs"
86
- variant="outline"
87
- className="!rounded-md"
88
- onClick={() => callAi()}
89
- >
90
- <ArrowUp className="size-4" />
91
- </Button>
92
- </div>
93
- </div>
94
- </div>
95
- </div>
96
- );
97
- };