-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathtemplates.json
More file actions
74 lines (74 loc) · 2.63 KB
/
templates.json
File metadata and controls
74 lines (74 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[
{
"id": "basic-calculator",
"title": "Basic Calculator",
"category": "beginner",
"description": "A simple calculator template with basic arithmetic operations",
"tech": ["HTML", "CSS", "JavaScript"],
"features": ["Basic math operations", "Clear button", "Responsive design"],
"difficulty": "Beginner"
},
{
"id": "todo-app",
"title": "Todo List App",
"category": "beginner",
"description": "Manage your tasks with this simple todo list template",
"tech": ["HTML", "CSS", "JavaScript", "LocalStorage"],
"features": ["Add tasks", "Mark as complete", "Delete tasks", "Persistent storage"],
"difficulty": "Beginner"
},
{
"id": "weather-app",
"title": "Weather Dashboard",
"category": "intermediate",
"description": "Display weather information using a public API",
"tech": ["HTML", "CSS", "JavaScript", "API"],
"features": ["Search by city", "Weather icons", "Temperature display", "Forecast"],
"difficulty": "Intermediate"
},
{
"id": "note-taking-app",
"title": "Note Taking App",
"category": "intermediate",
"description": "Create and organize your notes with categories",
"tech": ["HTML", "CSS", "JavaScript", "LocalStorage"],
"features": ["Create notes", "Categorize notes", "Search notes", "Persistent storage"],
"difficulty": "Intermediate"
},
{
"id": "code-editor",
"title": "Simple Code Editor",
"category": "advanced",
"description": "A browser-based code editor with syntax highlighting",
"tech": ["HTML", "CSS", "JavaScript"],
"features": ["Code editor UI", "Line numbers", "Dark mode", "Download code"],
"difficulty": "Advanced"
},
{
"id": "chat-app-ui",
"title": "Chat Application UI",
"category": "intermediate",
"description": "A modern chat application interface template",
"tech": ["HTML", "CSS", "JavaScript"],
"features": ["Chat bubbles", "Message input", "User avatars", "Timestamps"],
"difficulty": "Intermediate"
},
{
"id": "portfolio-template",
"title": "Personal Portfolio",
"category": "intermediate",
"description": "Showcase your work with this portfolio template",
"tech": ["HTML", "CSS", "JavaScript"],
"features": ["Hero section", "About section", "Projects gallery", "Contact form"],
"difficulty": "Intermediate"
},
{
"id": "game-template",
"title": "Simple Game Framework",
"category": "advanced",
"description": "A framework for building simple browser games",
"tech": ["HTML", "Canvas", "JavaScript"],
"features": ["Game loop", "Score tracking", "Controls", "Game states"],
"difficulty": "Advanced"
}
]