@nextsparkjs/theme-default 0.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (333) hide show
  1. package/about/business.md +49 -0
  2. package/about/features.json +302 -0
  3. package/about/team.md +79 -0
  4. package/api/ai/chat/stream/route.ts +212 -0
  5. package/api/ai/orchestrator/route.ts +226 -0
  6. package/api/ai/single-agent/route.ts +291 -0
  7. package/api/ai/usage/route.ts +122 -0
  8. package/blocks/benefits/component.tsx +100 -0
  9. package/blocks/benefits/config.ts +11 -0
  10. package/blocks/benefits/examples.ts +85 -0
  11. package/blocks/benefits/fields.ts +156 -0
  12. package/blocks/benefits/schema.ts +33 -0
  13. package/blocks/cta-section/component.tsx +100 -0
  14. package/blocks/cta-section/config.ts +11 -0
  15. package/blocks/cta-section/examples.ts +41 -0
  16. package/blocks/cta-section/fields.ts +89 -0
  17. package/blocks/cta-section/index.ts +6 -0
  18. package/blocks/cta-section/schema.ts +32 -0
  19. package/blocks/cta-section/thumbnail.png +1 -0
  20. package/blocks/faq-accordion/component.tsx +156 -0
  21. package/blocks/faq-accordion/config.ts +11 -0
  22. package/blocks/faq-accordion/examples.ts +77 -0
  23. package/blocks/faq-accordion/fields.ts +119 -0
  24. package/blocks/faq-accordion/index.ts +6 -0
  25. package/blocks/faq-accordion/schema.ts +45 -0
  26. package/blocks/features-grid/component.tsx +112 -0
  27. package/blocks/features-grid/config.ts +11 -0
  28. package/blocks/features-grid/examples.ts +63 -0
  29. package/blocks/features-grid/fields.ts +97 -0
  30. package/blocks/features-grid/index.ts +6 -0
  31. package/blocks/features-grid/schema.ts +40 -0
  32. package/blocks/features-grid/thumbnail.png +1 -0
  33. package/blocks/hero/component.tsx +100 -0
  34. package/blocks/hero/config.ts +11 -0
  35. package/blocks/hero/examples.ts +35 -0
  36. package/blocks/hero/fields.ts +60 -0
  37. package/blocks/hero/index.ts +6 -0
  38. package/blocks/hero/schema.ts +32 -0
  39. package/blocks/hero/thumbnail.png +1 -0
  40. package/blocks/hero/thumbnail.png.txt +6 -0
  41. package/blocks/hero-with-form/component.tsx +232 -0
  42. package/blocks/hero-with-form/config.ts +11 -0
  43. package/blocks/hero-with-form/examples.ts +16 -0
  44. package/blocks/hero-with-form/fields.ts +207 -0
  45. package/blocks/hero-with-form/index.ts +6 -0
  46. package/blocks/hero-with-form/schema.ts +54 -0
  47. package/blocks/jumbotron/component.tsx +136 -0
  48. package/blocks/jumbotron/config.ts +11 -0
  49. package/blocks/jumbotron/examples.ts +36 -0
  50. package/blocks/jumbotron/fields.ts +202 -0
  51. package/blocks/jumbotron/index.ts +6 -0
  52. package/blocks/jumbotron/schema.ts +55 -0
  53. package/blocks/logo-cloud/component.tsx +154 -0
  54. package/blocks/logo-cloud/config.ts +11 -0
  55. package/blocks/logo-cloud/examples.ts +34 -0
  56. package/blocks/logo-cloud/fields.ts +133 -0
  57. package/blocks/logo-cloud/index.ts +6 -0
  58. package/blocks/logo-cloud/schema.ts +46 -0
  59. package/blocks/post-content/component.tsx +197 -0
  60. package/blocks/post-content/config.ts +11 -0
  61. package/blocks/post-content/examples.ts +33 -0
  62. package/blocks/post-content/fields.ts +165 -0
  63. package/blocks/post-content/index.ts +4 -0
  64. package/blocks/post-content/schema.ts +46 -0
  65. package/blocks/pricing-table/component.tsx +154 -0
  66. package/blocks/pricing-table/config.ts +11 -0
  67. package/blocks/pricing-table/examples.ts +96 -0
  68. package/blocks/pricing-table/fields.ts +161 -0
  69. package/blocks/pricing-table/index.ts +4 -0
  70. package/blocks/pricing-table/schema.ts +50 -0
  71. package/blocks/split-content/component.tsx +135 -0
  72. package/blocks/split-content/config.ts +11 -0
  73. package/blocks/split-content/examples.ts +38 -0
  74. package/blocks/split-content/fields.ts +198 -0
  75. package/blocks/split-content/index.ts +6 -0
  76. package/blocks/split-content/schema.ts +67 -0
  77. package/blocks/stats-counter/component.tsx +124 -0
  78. package/blocks/stats-counter/config.ts +11 -0
  79. package/blocks/stats-counter/examples.ts +61 -0
  80. package/blocks/stats-counter/fields.ts +134 -0
  81. package/blocks/stats-counter/index.ts +6 -0
  82. package/blocks/stats-counter/schema.ts +47 -0
  83. package/blocks/testimonials/component.tsx +114 -0
  84. package/blocks/testimonials/config.ts +11 -0
  85. package/blocks/testimonials/examples.ts +65 -0
  86. package/blocks/testimonials/fields.ts +105 -0
  87. package/blocks/testimonials/index.ts +6 -0
  88. package/blocks/testimonials/schema.ts +41 -0
  89. package/blocks/testimonials/thumbnail.png +1 -0
  90. package/blocks/text-content/component.tsx +97 -0
  91. package/blocks/text-content/config.ts +11 -0
  92. package/blocks/text-content/examples.ts +30 -0
  93. package/blocks/text-content/fields.ts +88 -0
  94. package/blocks/text-content/index.ts +6 -0
  95. package/blocks/text-content/schema.ts +30 -0
  96. package/blocks/text-content/thumbnail.png +1 -0
  97. package/blocks/timeline/component.tsx +267 -0
  98. package/blocks/timeline/config.ts +11 -0
  99. package/blocks/timeline/examples.ts +68 -0
  100. package/blocks/timeline/fields.ts +147 -0
  101. package/blocks/timeline/index.ts +6 -0
  102. package/blocks/timeline/schema.ts +49 -0
  103. package/blocks/video-hero/component.tsx +270 -0
  104. package/blocks/video-hero/config.ts +11 -0
  105. package/blocks/video-hero/examples.ts +24 -0
  106. package/blocks/video-hero/fields.ts +98 -0
  107. package/blocks/video-hero/index.ts +6 -0
  108. package/blocks/video-hero/schema.ts +39 -0
  109. package/components/ai-chat/ChatPanel.tsx +575 -0
  110. package/components/ai-chat/ConversationItem.tsx +266 -0
  111. package/components/ai-chat/ConversationSidebar.tsx +99 -0
  112. package/components/ai-chat/MarkdownRenderer.tsx +15 -0
  113. package/components/ai-chat/Message.tsx +42 -0
  114. package/components/ai-chat/MessageInput.tsx +49 -0
  115. package/components/ai-chat/MessageList.tsx +46 -0
  116. package/components/ai-chat/TypingIndicator.tsx +11 -0
  117. package/config/app.config.ts +367 -0
  118. package/config/billing.config.ts +349 -0
  119. package/config/dashboard.config.ts +506 -0
  120. package/config/dev.config.ts +104 -0
  121. package/config/features.config.ts +203 -0
  122. package/config/flows.config.ts +129 -0
  123. package/config/permissions.config.ts +245 -0
  124. package/config/theme.config.ts +74 -0
  125. package/docs/01-overview/01-introduction.md +335 -0
  126. package/docs/01-overview/02-customization.md +671 -0
  127. package/docs/02-features/01-components.md +155 -0
  128. package/docs/02-features/02-styling.md +139 -0
  129. package/docs/02-features/03-tasks-entity.md +407 -0
  130. package/docs/03-ai/01-overview.md +211 -0
  131. package/docs/03-ai/02-customization.md +436 -0
  132. package/entities/customers/customers.config.ts +75 -0
  133. package/entities/customers/customers.fields.ts +165 -0
  134. package/entities/customers/customers.service.ts +516 -0
  135. package/entities/customers/customers.types.ts +83 -0
  136. package/entities/customers/messages/en.json +66 -0
  137. package/entities/customers/messages/es.json +66 -0
  138. package/entities/customers/migrations/001_customers_table.sql +102 -0
  139. package/entities/customers/migrations/002_customers_metas.sql +92 -0
  140. package/entities/pages/messages/en.json +41 -0
  141. package/entities/pages/messages/es.json +41 -0
  142. package/entities/pages/migrations/001_pages_table.sql +112 -0
  143. package/entities/pages/migrations/002_pages_metas.sql +56 -0
  144. package/entities/pages/migrations/003_add_status.sql +50 -0
  145. package/entities/pages/pages-management.service.ts +610 -0
  146. package/entities/pages/pages.config.ts +94 -0
  147. package/entities/pages/pages.fields.ts +101 -0
  148. package/entities/pages/pages.service.ts +290 -0
  149. package/entities/pages/pages.types.ts +124 -0
  150. package/entities/posts/components/post-header.tsx +97 -0
  151. package/entities/posts/messages/en.json +55 -0
  152. package/entities/posts/messages/es.json +55 -0
  153. package/entities/posts/migrations/001_posts_table.sql +115 -0
  154. package/entities/posts/migrations/003_add_status.sql +44 -0
  155. package/entities/posts/migrations/004_entity_taxonomy_relations.sql +129 -0
  156. package/entities/posts/migrations/006_posts_metas.sql +56 -0
  157. package/entities/posts/posts.config.ts +101 -0
  158. package/entities/posts/posts.fields.ts +116 -0
  159. package/entities/posts/posts.service.ts +376 -0
  160. package/entities/posts/posts.types.ts +74 -0
  161. package/entities/tasks/messages/en.json +204 -0
  162. package/entities/tasks/messages/es.json +204 -0
  163. package/entities/tasks/migrations/001_tasks_table.sql +105 -0
  164. package/entities/tasks/migrations/002_task_metas.sql +85 -0
  165. package/entities/tasks/migrations/sample_data.json +77 -0
  166. package/entities/tasks/tasks.config.ts +79 -0
  167. package/entities/tasks/tasks.fields.ts +196 -0
  168. package/entities/tasks/tasks.service.ts +541 -0
  169. package/entities/tasks/tasks.types.ts +56 -0
  170. package/lib/hooks/useAiChat.ts +114 -0
  171. package/lib/hooks/useConversations.ts +376 -0
  172. package/lib/hooks/useOrchestratorChat.ts +122 -0
  173. package/lib/hooks/usePersistentChat.ts +315 -0
  174. package/lib/hooks/useStreamingChat.ts +127 -0
  175. package/lib/hooks/useTokenUsage.ts +63 -0
  176. package/lib/langchain/agents/customer-assistant.md +69 -0
  177. package/lib/langchain/agents/index.ts +61 -0
  178. package/lib/langchain/agents/orchestrator.md +59 -0
  179. package/lib/langchain/agents/page-assistant.md +85 -0
  180. package/lib/langchain/agents/single-agent.md +46 -0
  181. package/lib/langchain/agents/task-assistant.md +55 -0
  182. package/lib/langchain/config.ts +45 -0
  183. package/lib/langchain/handlers/customer-handler.ts +338 -0
  184. package/lib/langchain/handlers/page-handler.ts +232 -0
  185. package/lib/langchain/handlers/task-handler.ts +323 -0
  186. package/lib/langchain/langchain.config.ts +223 -0
  187. package/lib/langchain/observability.config.ts +30 -0
  188. package/lib/langchain/orchestrator.ts +562 -0
  189. package/lib/langchain/tools/customers.ts +176 -0
  190. package/lib/langchain/tools/index.ts +10 -0
  191. package/lib/langchain/tools/orchestrator.ts +92 -0
  192. package/lib/langchain/tools/pages.ts +289 -0
  193. package/lib/langchain/tools/tasks.ts +167 -0
  194. package/lib/scheduled-actions/billing.ts +149 -0
  195. package/lib/scheduled-actions/index.ts +170 -0
  196. package/lib/scheduled-actions/webhook.ts +231 -0
  197. package/lib/selectors.ts +197 -0
  198. package/messages/de/admin.json +219 -0
  199. package/messages/de/aiUsage.json +36 -0
  200. package/messages/de/buttons.json +19 -0
  201. package/messages/de/categories.json +35 -0
  202. package/messages/de/common.json +16 -0
  203. package/messages/de/dev.json +101 -0
  204. package/messages/de/docs.json +27 -0
  205. package/messages/de/entities.json +7 -0
  206. package/messages/de/features.json +119 -0
  207. package/messages/de/footer.json +22 -0
  208. package/messages/de/home.json +57 -0
  209. package/messages/de/index.ts +39 -0
  210. package/messages/de/mobileNav.json +13 -0
  211. package/messages/de/navigation.json +8 -0
  212. package/messages/de/observability.json +74 -0
  213. package/messages/de/posts.json +54 -0
  214. package/messages/de/pricing.json +102 -0
  215. package/messages/de/support.json +9 -0
  216. package/messages/de/teams.json +8 -0
  217. package/messages/en/admin.json +219 -0
  218. package/messages/en/aiUsage.json +36 -0
  219. package/messages/en/buttons.json +19 -0
  220. package/messages/en/categories.json +35 -0
  221. package/messages/en/common.json +16 -0
  222. package/messages/en/dev.json +106 -0
  223. package/messages/en/docs.json +27 -0
  224. package/messages/en/entities.json +7 -0
  225. package/messages/en/features.json +119 -0
  226. package/messages/en/footer.json +22 -0
  227. package/messages/en/home.json +57 -0
  228. package/messages/en/index.ts +39 -0
  229. package/messages/en/mobileNav.json +13 -0
  230. package/messages/en/navigation.json +8 -0
  231. package/messages/en/observability.json +74 -0
  232. package/messages/en/posts.json +54 -0
  233. package/messages/en/pricing.json +102 -0
  234. package/messages/en/support.json +9 -0
  235. package/messages/en/teams.json +8 -0
  236. package/messages/es/admin.json +219 -0
  237. package/messages/es/aiUsage.json +36 -0
  238. package/messages/es/buttons.json +19 -0
  239. package/messages/es/categories.json +35 -0
  240. package/messages/es/common.json +16 -0
  241. package/messages/es/dev.json +101 -0
  242. package/messages/es/docs.json +27 -0
  243. package/messages/es/entities.json +7 -0
  244. package/messages/es/features.json +119 -0
  245. package/messages/es/footer.json +22 -0
  246. package/messages/es/home.json +57 -0
  247. package/messages/es/index.ts +39 -0
  248. package/messages/es/mobileNav.json +13 -0
  249. package/messages/es/navigation.json +8 -0
  250. package/messages/es/observability.json +74 -0
  251. package/messages/es/posts.json +54 -0
  252. package/messages/es/pricing.json +102 -0
  253. package/messages/es/support.json +9 -0
  254. package/messages/es/teams.json +8 -0
  255. package/messages/fr/admin.json +219 -0
  256. package/messages/fr/aiUsage.json +36 -0
  257. package/messages/fr/buttons.json +19 -0
  258. package/messages/fr/categories.json +35 -0
  259. package/messages/fr/common.json +16 -0
  260. package/messages/fr/dev.json +101 -0
  261. package/messages/fr/docs.json +27 -0
  262. package/messages/fr/entities.json +7 -0
  263. package/messages/fr/features.json +119 -0
  264. package/messages/fr/footer.json +22 -0
  265. package/messages/fr/home.json +57 -0
  266. package/messages/fr/index.ts +39 -0
  267. package/messages/fr/mobileNav.json +13 -0
  268. package/messages/fr/navigation.json +8 -0
  269. package/messages/fr/observability.json +74 -0
  270. package/messages/fr/posts.json +54 -0
  271. package/messages/fr/pricing.json +102 -0
  272. package/messages/fr/support.json +9 -0
  273. package/messages/fr/teams.json +8 -0
  274. package/messages/it/admin.json +219 -0
  275. package/messages/it/aiUsage.json +36 -0
  276. package/messages/it/buttons.json +19 -0
  277. package/messages/it/categories.json +35 -0
  278. package/messages/it/common.json +16 -0
  279. package/messages/it/dev.json +101 -0
  280. package/messages/it/docs.json +27 -0
  281. package/messages/it/entities.json +7 -0
  282. package/messages/it/features.json +119 -0
  283. package/messages/it/footer.json +22 -0
  284. package/messages/it/home.json +57 -0
  285. package/messages/it/index.ts +39 -0
  286. package/messages/it/mobileNav.json +13 -0
  287. package/messages/it/navigation.json +8 -0
  288. package/messages/it/observability.json +74 -0
  289. package/messages/it/posts.json +54 -0
  290. package/messages/it/pricing.json +102 -0
  291. package/messages/it/support.json +9 -0
  292. package/messages/it/teams.json +8 -0
  293. package/messages/pt/admin.json +219 -0
  294. package/messages/pt/aiUsage.json +36 -0
  295. package/messages/pt/buttons.json +19 -0
  296. package/messages/pt/categories.json +35 -0
  297. package/messages/pt/common.json +16 -0
  298. package/messages/pt/dev.json +101 -0
  299. package/messages/pt/docs.json +27 -0
  300. package/messages/pt/entities.json +7 -0
  301. package/messages/pt/features.json +119 -0
  302. package/messages/pt/footer.json +22 -0
  303. package/messages/pt/home.json +57 -0
  304. package/messages/pt/index.ts +39 -0
  305. package/messages/pt/mobileNav.json +13 -0
  306. package/messages/pt/navigation.json +8 -0
  307. package/messages/pt/observability.json +74 -0
  308. package/messages/pt/posts.json +54 -0
  309. package/messages/pt/pricing.json +102 -0
  310. package/messages/pt/support.json +9 -0
  311. package/messages/pt/teams.json +8 -0
  312. package/migrations/089_add_editor_team_role.sql +39 -0
  313. package/migrations/090_demo_users_teams.sql +540 -0
  314. package/migrations/091_greek_teams_billing.sql +523 -0
  315. package/migrations/092_billing_sample_data.sql +774 -0
  316. package/migrations/093_pages_sample_data.sql +1158 -0
  317. package/migrations/094_posts_sample_data.sql +278 -0
  318. package/migrations/095_tasks_sample_data.sql +440 -0
  319. package/migrations/096_customers_sample_data.sql +358 -0
  320. package/migrations/097_scheduled_actions_sample_data.sql +111 -0
  321. package/package.json +22 -0
  322. package/public/docs/desktop-layout-example.png +0 -0
  323. package/styles/components.css +11 -0
  324. package/styles/globals.css +179 -0
  325. package/templates/(public)/blog/[slug]/page.tsx +65 -0
  326. package/templates/(public)/layout.tsx +25 -0
  327. package/templates/(public)/page.tsx +200 -0
  328. package/templates/(public)/support/page.tsx +321 -0
  329. package/templates/dashboard/(main)/agent-multi/page.tsx +63 -0
  330. package/templates/dashboard/(main)/agent-single/page.tsx +142 -0
  331. package/templates/dashboard/(main)/settings/ai-usage/page.tsx +157 -0
  332. package/templates/superadmin/ai-observability/[traceId]/page.tsx +27 -0
  333. package/templates/superadmin/ai-observability/page.tsx +17 -0
@@ -0,0 +1,119 @@
1
+ {
2
+ "analytics": {
3
+ "title": "Advanced Analytics",
4
+ "benefit1": "Real-time dashboard metrics",
5
+ "benefit2": "Custom report builder",
6
+ "benefit3": "Export to PDF/CSV"
7
+ },
8
+ "webhooks": {
9
+ "title": "Webhooks",
10
+ "benefit1": "HTTP callbacks for events",
11
+ "benefit2": "Custom payload templates",
12
+ "benefit3": "Retry logic and logging"
13
+ },
14
+ "automation": {
15
+ "title": "Task Automation",
16
+ "benefit1": "Automated task creation",
17
+ "benefit2": "Scheduled actions",
18
+ "benefit3": "Workflow triggers"
19
+ },
20
+ "hero": {
21
+ "badge": "Feature Overview",
22
+ "title": "Everything you need to build modern applications",
23
+ "description": "Our platform provides a comprehensive set of features designed to accelerate your development process while maintaining security and scalability."
24
+ },
25
+ "highlights": {
26
+ "productionReady": {
27
+ "title": "Production Ready",
28
+ "description": "Battle-tested architecture ready for deployment"
29
+ },
30
+ "developerExperience": {
31
+ "title": "Developer Experience",
32
+ "description": "Hot reload, TypeScript, and modern tooling"
33
+ },
34
+ "scalable": {
35
+ "title": "Scalable",
36
+ "description": "Built to grow with your application needs"
37
+ },
38
+ "secure": {
39
+ "title": "Secure",
40
+ "description": "Enterprise-grade security by default"
41
+ }
42
+ },
43
+ "categories": {
44
+ "authSecurity": {
45
+ "title": "Authentication & Security",
46
+ "features": {
47
+ "betterAuth": {
48
+ "name": "Better Auth Integration",
49
+ "description": "Modern, secure authentication with built-in session management"
50
+ },
51
+ "multiOAuth": {
52
+ "name": "Multi-Provider OAuth",
53
+ "description": "Support for Google, GitHub, and other OAuth providers"
54
+ },
55
+ "twoFactor": {
56
+ "name": "Two-Factor Authentication",
57
+ "description": "Enhanced security with TOTP and SMS verification"
58
+ }
59
+ }
60
+ },
61
+ "userExperience": {
62
+ "title": "User Experience",
63
+ "features": {
64
+ "darkLight": {
65
+ "name": "Dark/Light Mode",
66
+ "description": "Seamless theme switching with system preference detection"
67
+ },
68
+ "mobileResponsive": {
69
+ "name": "Mobile Responsive",
70
+ "description": "Optimized experience across all devices and screen sizes"
71
+ },
72
+ "realTimeNotifications": {
73
+ "name": "Real-time Notifications",
74
+ "description": "Instant updates and alerts for important events"
75
+ }
76
+ }
77
+ },
78
+ "development": {
79
+ "title": "Development",
80
+ "features": {
81
+ "typescriptReady": {
82
+ "name": "TypeScript Ready",
83
+ "description": "Full TypeScript support with type safety throughout"
84
+ },
85
+ "modernStack": {
86
+ "name": "Modern Stack",
87
+ "description": "Next.js 15, React 19, and latest web technologies"
88
+ },
89
+ "componentLibrary": {
90
+ "name": "Component Library",
91
+ "description": "Beautiful, accessible components with shadcn/ui"
92
+ }
93
+ }
94
+ },
95
+ "dataPerformance": {
96
+ "title": "Data & Performance",
97
+ "features": {
98
+ "postgresql": {
99
+ "name": "PostgreSQL Database",
100
+ "description": "Robust, scalable database with Supabase integration"
101
+ },
102
+ "tanstackQuery": {
103
+ "name": "TanStack Query",
104
+ "description": "Powerful data fetching, caching, and synchronization"
105
+ },
106
+ "edgeRuntime": {
107
+ "name": "Edge Runtime",
108
+ "description": "Fast, globally distributed API responses"
109
+ }
110
+ }
111
+ }
112
+ },
113
+ "cta": {
114
+ "title": "Ready to get started?",
115
+ "description": "Join thousands of developers who are building amazing applications with our platform.",
116
+ "getStarted": "Get Started Free",
117
+ "viewDocs": "View Documentation"
118
+ }
119
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "product": "Product",
3
+ "company": "Company",
4
+ "legal": "Legal",
5
+ "resources": "Resources",
6
+ "features": "Features",
7
+ "pricing": "Pricing",
8
+ "support": "Support",
9
+ "docs": "Documentation",
10
+ "about": "About",
11
+ "blog": "Blog",
12
+ "careers": "Careers",
13
+ "contact": "Contact",
14
+ "privacy": "Privacy Policy",
15
+ "terms": "Terms of Service",
16
+ "cookies": "Cookie Policy",
17
+ "gdpr": "GDPR",
18
+ "helpCenter": "Help Center",
19
+ "apiDocs": "API Docs",
20
+ "status": "Status",
21
+ "changelog": "Changelog"
22
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "hero": {
3
+ "badge": "Next.js 15 + Better Auth + shadcn/ui",
4
+ "title": "Modern NextSpark",
5
+ "description": "Production-ready starter with authentication, database, and beautiful UI components"
6
+ },
7
+ "auth": {
8
+ "authenticated": "Authenticated",
9
+ "welcomeBack": "Welcome back, {email}",
10
+ "goToDashboard": "Go to Dashboard",
11
+ "getStarted": "Get Started",
12
+ "experience": "Experience the power of modern web development",
13
+ "createAccount": "Create Account",
14
+ "signIn": "Sign In"
15
+ },
16
+ "techStack": {
17
+ "title": "Tech Stack",
18
+ "description": "Built with the latest and most powerful technologies",
19
+ "latest": "Latest",
20
+ "secure": "Secure",
21
+ "supabase": "Supabase",
22
+ "v5": "v5",
23
+ "components": "Components",
24
+ "validation": "Validation",
25
+ "styling": "Styling",
26
+ "appRouter": "App Router"
27
+ },
28
+ "features": {
29
+ "title": "Features",
30
+ "description": "Everything you need to build a modern SaaS",
31
+ "emailAuth": "Email/Password Auth",
32
+ "googleOAuth": "Google OAuth",
33
+ "protectedRoutes": "Protected Routes",
34
+ "emailVerification": "Email Verification",
35
+ "passwordReset": "Password Reset",
36
+ "entityManagement": "Entity System",
37
+ "pluginSystem": "Plugin Architecture",
38
+ "themeSupport": "Multi-Theme Support",
39
+ "i18nSystem": "Internationalization",
40
+ "apiRoutes": "RESTful API",
41
+ "colorMode": "Color Mode",
42
+ "aiIntegration": "AI Integration",
43
+ "teams": "Teams",
44
+ "memberships": "Memberships",
45
+ "amplitude": "Amplitude Analytics"
46
+ },
47
+ "cta": {
48
+ "readyToStart": "Ready to Get Started?",
49
+ "description": "Join thousands of developers who trust our boilerplate to build amazing SaaS applications faster.",
50
+ "viewPricing": "View Pricing",
51
+ "startFreeTrial": "Start Free Trial"
52
+ },
53
+ "footer": {
54
+ "builtWith": "Built with shadcn/ui components",
55
+ "readyForProduction": "Ready for production deployment"
56
+ }
57
+ }
@@ -0,0 +1,39 @@
1
+ import admin from './admin.json'
2
+ import aiUsage from './aiUsage.json'
3
+ import buttons from './buttons.json'
4
+ import categories from './categories.json'
5
+ import common from './common.json'
6
+ import dev from './dev.json'
7
+ import docs from './docs.json'
8
+ import entities from './entities.json'
9
+ import features from './features.json'
10
+ import footer from './footer.json'
11
+ import home from './home.json'
12
+ import mobileNav from './mobileNav.json'
13
+ import navigation from './navigation.json'
14
+ import observability from './observability.json'
15
+ import posts from './posts.json'
16
+ import pricing from './pricing.json'
17
+ import support from './support.json'
18
+ import teams from './teams.json'
19
+
20
+ export default {
21
+ admin,
22
+ aiUsage,
23
+ buttons,
24
+ categories,
25
+ common,
26
+ dev,
27
+ docs,
28
+ entities,
29
+ features,
30
+ footer,
31
+ home,
32
+ mobileNav,
33
+ navigation,
34
+ observability,
35
+ posts,
36
+ pricing,
37
+ support,
38
+ teams,
39
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "home": "Home",
3
+ "tasks": "Tasks",
4
+ "create": "Create",
5
+ "settings": "Settings",
6
+ "more": "More",
7
+ "moreOptions": "More Options",
8
+ "moreOptionsDescription": "Access additional settings and features",
9
+ "quickCreateDescription": "Create a new item",
10
+ "noEntitiesAvailable": "No items available to create",
11
+ "createNew": "Create new",
12
+ "greeting": "Hi, {name}"
13
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "features": "Features",
3
+ "pricing": "Pricing",
4
+ "support": "Support",
5
+ "docs": "Documentation",
6
+ "dashboard": "Dashboard",
7
+ "pages": "Pages"
8
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "title": "AI Observability",
3
+ "description": "Monitor LangChain agent invocations and traces",
4
+ "loading": "Loading traces...",
5
+ "error": "Error loading traces",
6
+ "disabled": "Observability is disabled in configuration",
7
+ "loadMore": "Load more",
8
+ "loadingMore": "Loading...",
9
+ "reload": "Reload",
10
+ "reloading": "Reloading...",
11
+ "period": {
12
+ "1h": "Last hour",
13
+ "24h": "Last 24 hours",
14
+ "7d": "Last 7 days",
15
+ "30d": "Last 30 days"
16
+ },
17
+ "status": {
18
+ "running": "Running",
19
+ "success": "Success",
20
+ "error": "Error"
21
+ },
22
+ "filters": {
23
+ "status": "Status",
24
+ "agent": "Agent",
25
+ "period": "Period",
26
+ "allStatus": "All statuses",
27
+ "allAgents": "All agents",
28
+ "searchPlaceholder": "Search by trace ID or input..."
29
+ },
30
+ "table": {
31
+ "traceId": "Trace ID",
32
+ "input": "Message",
33
+ "agent": "Agent",
34
+ "status": "Status",
35
+ "duration": "Duration",
36
+ "tokens": "Tokens",
37
+ "startedAt": "Started At",
38
+ "empty": "No traces found for the selected period and filters"
39
+ },
40
+ "detail": {
41
+ "title": "Trace Detail",
42
+ "back": "Back to traces",
43
+ "agent": "Agent",
44
+ "model": "Model",
45
+ "duration": "Duration",
46
+ "tokens": "Tokens",
47
+ "calls": "Calls",
48
+ "tools": "tools",
49
+ "input": "Input",
50
+ "output": "Output",
51
+ "error": "Error",
52
+ "stackTrace": "Stack Trace",
53
+ "spans": "Execution Spans",
54
+ "childTraces": "Sub-Agent Traces",
55
+ "noSpans": "No spans recorded for this trace",
56
+ "showDetails": "Show details",
57
+ "hideDetails": "Hide details",
58
+ "toolInput": "Tool Input",
59
+ "toolOutput": "Tool Output",
60
+ "hiddenSpans": "{count} internal chains hidden",
61
+ "showInternalChains": "Show all",
62
+ "hideInternalChains": "Hide internal"
63
+ },
64
+ "flow": {
65
+ "title": "Conversation Flow",
66
+ "userMessage": "User",
67
+ "assistantResponse": "Assistant",
68
+ "toolCall": "Tool Call",
69
+ "toolResult": "Tool Result",
70
+ "noSteps": "No execution steps recorded",
71
+ "showFull": "Show full",
72
+ "collapse": "Collapse"
73
+ }
74
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "title": "Posts",
3
+ "description": "Manage your blog posts",
4
+ "newPost": "New Post",
5
+ "editPost": "Edit Post",
6
+ "postTitle": "Title",
7
+ "postDetails": "Post Details",
8
+ "slug": "Slug",
9
+ "status": "Status",
10
+ "excerpt": "Excerpt",
11
+ "featuredImage": "Featured Image",
12
+ "categories": "Categories",
13
+ "content": "Content",
14
+ "published": "Published",
15
+ "draft": "Draft",
16
+ "author": "Author",
17
+ "createdAt": "Created",
18
+ "actions": "Actions",
19
+ "search": "Search posts...",
20
+ "noPostsFound": "No posts found",
21
+ "deleteConfirm": "Are you sure?",
22
+ "deleteDescription": "This will permanently delete \"{title}\". This action cannot be undone.",
23
+ "savePost": "Save Post",
24
+ "saving": "Saving...",
25
+ "deleting": "Deleting...",
26
+ "viewPost": "View Post",
27
+ "back": "Back to Posts",
28
+ "loading": "Loading...",
29
+ "publish": "Publish",
30
+ "edit": "Edit",
31
+ "delete": "Delete",
32
+ "cancel": "Cancel",
33
+ "unsavedChanges": "Unsaved changes",
34
+ "characters": "characters",
35
+ "createSuccess": "Post created successfully",
36
+ "updateSuccess": "Post updated successfully",
37
+ "deleteSuccess": "Post deleted successfully",
38
+ "filters": {
39
+ "category": "Filter by category",
40
+ "status": "Status",
41
+ "allCategories": "All Categories",
42
+ "allStatuses": "All Statuses"
43
+ },
44
+ "placeholders": {
45
+ "title": "Enter post title",
46
+ "slug": "post-slug",
47
+ "excerpt": "Brief summary of your post (max 500 characters)",
48
+ "featuredImage": "https://example.com/image.jpg"
49
+ },
50
+ "errors": {
51
+ "titleRequired": "Title is required",
52
+ "slugRequired": "Slug is required"
53
+ }
54
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "hero": {
3
+ "badge": "Pricing",
4
+ "title": "Plans for every",
5
+ "titleAccent": "team",
6
+ "description": "Start free and scale as your team grows. All plans include our core features."
7
+ },
8
+ "plans": {
9
+ "free": {
10
+ "name": "Free",
11
+ "description": "Perfect for getting started",
12
+ "price": "0",
13
+ "period": "forever",
14
+ "cta": "Get Started Free",
15
+ "features": {
16
+ "users": "1 User",
17
+ "projects": "5 Projects",
18
+ "storage": "1GB Storage",
19
+ "support": "Basic Support",
20
+ "api": "API Access",
21
+ "analytics": "Advanced Analytics",
22
+ "prioritySupport": "Priority Support",
23
+ "integrations": "Custom Integrations"
24
+ }
25
+ },
26
+ "pro": {
27
+ "name": "Pro",
28
+ "description": "Best for growing teams",
29
+ "price": "29",
30
+ "period": "month",
31
+ "badge": "Most Popular",
32
+ "cta": "Start Pro Trial",
33
+ "features": {
34
+ "users": "10 Users",
35
+ "projects": "Unlimited Projects",
36
+ "storage": "100GB Storage",
37
+ "support": "Priority Support",
38
+ "api": "API Access",
39
+ "analytics": "Advanced Analytics",
40
+ "integrations": "Custom Integrations",
41
+ "manager": "Dedicated Manager"
42
+ }
43
+ },
44
+ "enterprise": {
45
+ "name": "Enterprise",
46
+ "description": "For large organizations",
47
+ "price": "99",
48
+ "period": "month",
49
+ "cta": "Contact Sales",
50
+ "features": {
51
+ "users": "Unlimited Users",
52
+ "projects": "Unlimited Projects",
53
+ "storage": "1TB Storage",
54
+ "support": "Dedicated Support",
55
+ "api": "API Access",
56
+ "analytics": "Advanced Analytics",
57
+ "integrations": "Custom Integrations",
58
+ "manager": "Dedicated Manager"
59
+ }
60
+ }
61
+ },
62
+ "comparison": {
63
+ "title": "Detailed Comparison",
64
+ "description": "See all features included in each plan to make the best decision.",
65
+ "collaboration": {
66
+ "title": "Collaboration",
67
+ "description": "Tools to work efficiently as a team with granular permissions."
68
+ },
69
+ "storage": {
70
+ "title": "Storage",
71
+ "description": "Secure and scalable storage for all your projects and files."
72
+ },
73
+ "security": {
74
+ "title": "Security",
75
+ "description": "End-to-end encryption and compliance with security standards."
76
+ },
77
+ "support": {
78
+ "title": "Support",
79
+ "description": "Specialized technical support to resolve any questions or issues."
80
+ }
81
+ },
82
+ "faq": {
83
+ "title": "Frequently Asked Questions",
84
+ "description": "We resolve the most common questions about our plans and pricing.",
85
+ "questions": {
86
+ "changePlan": "Can I change plans at any time?",
87
+ "changePlanAnswer": "Yes, you can change your plan at any time from your dashboard. Changes apply immediately.",
88
+ "setupCost": "Are there any setup costs?",
89
+ "setupCostAnswer": "No, all our plans include free setup and support during implementation.",
90
+ "paymentMethods": "What payment methods do you accept?",
91
+ "paymentMethodsAnswer": "We accept all major credit cards, PayPal and bank transfers for Enterprise plans.",
92
+ "annualDiscount": "Are there discounts for annual payment?",
93
+ "annualDiscountAnswer": "Yes, we offer 2 free months when paying annually on Pro and Enterprise plans."
94
+ }
95
+ },
96
+ "cta": {
97
+ "title": "Ready to get started?",
98
+ "description": "Join thousands of teams that already trust our platform for their projects.",
99
+ "startFree": "Start Free",
100
+ "contactSales": "Contact Sales"
101
+ }
102
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "title": "Support & Documentation",
3
+ "description": "Get help and learn how to use our platform effectively.",
4
+ "hero": {
5
+ "badge": "Support Center",
6
+ "title": "How can we help you?",
7
+ "description": "Find answers to your questions, learn how to use the platform and contact our support team."
8
+ }
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "roles": {
3
+ "editor": "Editor"
4
+ },
5
+ "roleDescriptions": {
6
+ "editor": "Can edit content but has limited team management capabilities"
7
+ }
8
+ }