kofi-stack-template-generator 2.1.44 → 2.1.46
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.
- package/.turbo/turbo-build.log +5 -5
- package/dist/index.js +1384 -589
- package/package.json +2 -2
- package/src/templates.generated.ts +21 -21
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/about.ts +22 -22
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/faqs.ts +39 -39
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/automation.ts +35 -35
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/custom-fields.ts +58 -58
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/dashboard.ts +46 -46
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/index.ts +4 -4
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/monetization.ts +64 -64
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/seo.ts +65 -65
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/templates.ts +55 -58
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/home.ts +145 -145
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/index.ts +61 -55
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/posts.ts +231 -221
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/pricing.ts +27 -27
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/privacy.ts +3 -3
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/terms.ts +6 -6
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/b2b-vendor-hubs.ts +63 -62
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/communities.ts +62 -62
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/index.ts +4 -4
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/local-services.ts +62 -62
- package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/marketplaces.ts +66 -66
package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/custom-fields.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Page } from "@/payload-types"
|
|
2
2
|
import { createParagraph } from "../richtext-helper"
|
|
3
3
|
|
|
4
|
-
export const
|
|
4
|
+
export const workflowsPage = (): Partial<Page> => {
|
|
5
5
|
return {
|
|
6
|
-
slug: "features/
|
|
6
|
+
slug: "features/workflows",
|
|
7
7
|
_status: "published",
|
|
8
|
-
title: "
|
|
8
|
+
title: "Workflows",
|
|
9
9
|
hero: {
|
|
10
10
|
type: "lowImpact",
|
|
11
11
|
richText: {
|
|
@@ -21,7 +21,7 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
21
21
|
format: 0,
|
|
22
22
|
mode: "normal",
|
|
23
23
|
style: "",
|
|
24
|
-
text: "
|
|
24
|
+
text: "Build custom processes without code",
|
|
25
25
|
version: 1,
|
|
26
26
|
},
|
|
27
27
|
],
|
|
@@ -40,7 +40,7 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
40
40
|
format: 0,
|
|
41
41
|
mode: "normal",
|
|
42
42
|
style: "",
|
|
43
|
-
text: "Create
|
|
43
|
+
text: "Create workflows that match exactly how your team works. Visual builders, conditional logic, and templates make it easy to digitize any process.",
|
|
44
44
|
version: 1,
|
|
45
45
|
},
|
|
46
46
|
],
|
|
@@ -62,7 +62,7 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
62
62
|
link: {
|
|
63
63
|
type: "custom",
|
|
64
64
|
appearance: "default",
|
|
65
|
-
label: "Start
|
|
65
|
+
label: "Start free trial",
|
|
66
66
|
url: "/sign-up",
|
|
67
67
|
},
|
|
68
68
|
},
|
|
@@ -70,8 +70,8 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
70
70
|
link: {
|
|
71
71
|
type: "custom",
|
|
72
72
|
appearance: "outline",
|
|
73
|
-
label: "See
|
|
74
|
-
url: "/
|
|
73
|
+
label: "See workflow templates",
|
|
74
|
+
url: "/templates",
|
|
75
75
|
},
|
|
76
76
|
},
|
|
77
77
|
],
|
|
@@ -79,118 +79,118 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
79
79
|
layout: [
|
|
80
80
|
{
|
|
81
81
|
blockType: "featureShowcase",
|
|
82
|
-
blockName: "
|
|
83
|
-
label: "
|
|
84
|
-
headline: "
|
|
82
|
+
blockName: "Visual Builder",
|
|
83
|
+
label: "Workflow Builder",
|
|
84
|
+
headline: "Design workflows visually",
|
|
85
85
|
description: createParagraph(
|
|
86
|
-
"
|
|
86
|
+
"Drag and drop to create multi-step workflows. Add approvals, conditions, notifications, and integrations. See your entire process at a glance.",
|
|
87
87
|
),
|
|
88
88
|
link: {
|
|
89
89
|
type: "custom",
|
|
90
|
-
label: "
|
|
91
|
-
url: "/
|
|
90
|
+
label: "Try the builder",
|
|
91
|
+
url: "/sign-up",
|
|
92
92
|
appearance: "default",
|
|
93
93
|
},
|
|
94
94
|
imagePosition: "right",
|
|
95
95
|
features: [
|
|
96
|
-
{ text: "
|
|
97
|
-
{ text: "
|
|
98
|
-
{ text: "
|
|
99
|
-
{ text: "
|
|
96
|
+
{ text: "Drag-and-drop interface" },
|
|
97
|
+
{ text: "Multi-step workflows" },
|
|
98
|
+
{ text: "Parallel branches" },
|
|
99
|
+
{ text: "Visual process maps" },
|
|
100
100
|
],
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
blockType: "featureShowcase",
|
|
104
|
-
blockName: "
|
|
105
|
-
label: "
|
|
106
|
-
headline: "
|
|
104
|
+
blockName: "Approvals",
|
|
105
|
+
label: "Approval Workflows",
|
|
106
|
+
headline: "Streamline approvals and reviews",
|
|
107
107
|
description: createParagraph(
|
|
108
|
-
"
|
|
108
|
+
"Route requests to the right approvers automatically. Set up sequential or parallel approvals, escalations, and delegation rules.",
|
|
109
109
|
),
|
|
110
110
|
link: {
|
|
111
111
|
type: "custom",
|
|
112
|
-
label: "
|
|
112
|
+
label: "Learn about approvals",
|
|
113
113
|
url: "/features",
|
|
114
114
|
appearance: "default",
|
|
115
115
|
},
|
|
116
116
|
imagePosition: "left",
|
|
117
117
|
features: [
|
|
118
|
-
{ text: "
|
|
119
|
-
{ text: "
|
|
120
|
-
{ text: "
|
|
121
|
-
{ text: "
|
|
118
|
+
{ text: "Multi-level approvals" },
|
|
119
|
+
{ text: "Automatic escalation" },
|
|
120
|
+
{ text: "Delegation and backup" },
|
|
121
|
+
{ text: "Approval history" },
|
|
122
122
|
],
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
blockType: "featureShowcase",
|
|
126
|
-
blockName: "
|
|
127
|
-
label: "
|
|
128
|
-
headline: "
|
|
126
|
+
blockName: "Templates",
|
|
127
|
+
label: "Workflow Templates",
|
|
128
|
+
headline: "Start fast with pre-built templates",
|
|
129
129
|
description: createParagraph(
|
|
130
|
-
"
|
|
130
|
+
"Choose from dozens of workflow templates for common processes. Customize to fit your needs or build from scratch.",
|
|
131
131
|
),
|
|
132
132
|
link: {
|
|
133
133
|
type: "custom",
|
|
134
|
-
label: "
|
|
135
|
-
url: "/
|
|
134
|
+
label: "Browse templates",
|
|
135
|
+
url: "/templates",
|
|
136
136
|
appearance: "default",
|
|
137
137
|
},
|
|
138
138
|
imagePosition: "right",
|
|
139
139
|
features: [
|
|
140
|
-
{ text: "
|
|
141
|
-
{ text: "
|
|
142
|
-
{ text: "
|
|
143
|
-
{ text: "
|
|
140
|
+
{ text: "50+ workflow templates" },
|
|
141
|
+
{ text: "Onboarding workflows" },
|
|
142
|
+
{ text: "Request and approval flows" },
|
|
143
|
+
{ text: "Project workflows" },
|
|
144
144
|
],
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
blockType: "bentoFeatures",
|
|
148
|
-
blockName: "
|
|
149
|
-
heading: "
|
|
150
|
-
subheading: "
|
|
148
|
+
blockName: "Workflow Features",
|
|
149
|
+
heading: "Workflows for any process",
|
|
150
|
+
subheading: "From simple approvals to complex multi-department processes",
|
|
151
151
|
features: [
|
|
152
152
|
{
|
|
153
153
|
size: "small",
|
|
154
154
|
style: "gradient",
|
|
155
155
|
icon: "layers",
|
|
156
|
-
stat: "
|
|
157
|
-
title: "
|
|
158
|
-
description: createParagraph("
|
|
156
|
+
stat: "50+",
|
|
157
|
+
title: "Templates",
|
|
158
|
+
description: createParagraph("Pre-built workflows ready to use."),
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
size: "small",
|
|
162
162
|
style: "accent",
|
|
163
163
|
icon: "settings",
|
|
164
|
-
title: "
|
|
165
|
-
description: createParagraph("Visual
|
|
164
|
+
title: "No-Code Builder",
|
|
165
|
+
description: createParagraph("Visual workflow design interface."),
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
size: "small",
|
|
169
169
|
style: "default",
|
|
170
170
|
icon: "search",
|
|
171
|
-
title: "
|
|
172
|
-
description: createParagraph("
|
|
171
|
+
title: "Forms & Fields",
|
|
172
|
+
description: createParagraph("Custom forms for data collection."),
|
|
173
173
|
},
|
|
174
174
|
{
|
|
175
175
|
size: "small",
|
|
176
176
|
style: "primary",
|
|
177
177
|
icon: "database",
|
|
178
|
-
title: "
|
|
179
|
-
description: createParagraph("
|
|
178
|
+
title: "Data Routing",
|
|
179
|
+
description: createParagraph("Route data based on conditions."),
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
size: "small",
|
|
183
183
|
style: "default",
|
|
184
184
|
icon: "globe",
|
|
185
|
-
title: "
|
|
186
|
-
description: createParagraph("
|
|
185
|
+
title: "Integrations",
|
|
186
|
+
description: createParagraph("Connect to 100+ apps."),
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
size: "small",
|
|
190
190
|
style: "default",
|
|
191
191
|
icon: "shield",
|
|
192
|
-
title: "
|
|
193
|
-
description: createParagraph("
|
|
192
|
+
title: "Audit Trail",
|
|
193
|
+
description: createParagraph("Complete history of every workflow."),
|
|
194
194
|
},
|
|
195
195
|
],
|
|
196
196
|
},
|
|
@@ -198,14 +198,14 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
198
198
|
blockType: "proofBanner",
|
|
199
199
|
blockName: "CTA Section",
|
|
200
200
|
style: "centered",
|
|
201
|
-
headline: "
|
|
202
|
-
subtext: "
|
|
201
|
+
headline: "Digitize your processes today",
|
|
202
|
+
subtext: "Build custom workflows in minutes. No coding required.",
|
|
203
203
|
links: [
|
|
204
204
|
{
|
|
205
205
|
link: {
|
|
206
206
|
type: "custom",
|
|
207
207
|
appearance: "default",
|
|
208
|
-
label: "Start
|
|
208
|
+
label: "Start free trial",
|
|
209
209
|
url: "/sign-up",
|
|
210
210
|
},
|
|
211
211
|
},
|
|
@@ -222,8 +222,8 @@ export const customFieldsPage = (): Partial<Page> => {
|
|
|
222
222
|
],
|
|
223
223
|
meta: {
|
|
224
224
|
description:
|
|
225
|
-
"
|
|
226
|
-
title: "
|
|
225
|
+
"Build custom workflows for any process with SaaSify's visual workflow builder. Approvals, forms, conditions, and integrations without code.",
|
|
226
|
+
title: "Workflows — SaaSify Custom Process Builder",
|
|
227
227
|
},
|
|
228
228
|
}
|
|
229
229
|
}
|
|
@@ -5,7 +5,7 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
5
5
|
return {
|
|
6
6
|
slug: "features/dashboard",
|
|
7
7
|
_status: "published",
|
|
8
|
-
title: "
|
|
8
|
+
title: "Dashboard",
|
|
9
9
|
hero: {
|
|
10
10
|
type: "lowImpact",
|
|
11
11
|
richText: {
|
|
@@ -21,7 +21,7 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
21
21
|
format: 0,
|
|
22
22
|
mode: "normal",
|
|
23
23
|
style: "",
|
|
24
|
-
text: "
|
|
24
|
+
text: "Your unified command center",
|
|
25
25
|
version: 1,
|
|
26
26
|
},
|
|
27
27
|
],
|
|
@@ -40,7 +40,7 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
40
40
|
format: 0,
|
|
41
41
|
mode: "normal",
|
|
42
42
|
style: "",
|
|
43
|
-
text: "
|
|
43
|
+
text: "Everything your team needs in one place. Track projects, monitor progress, manage tasks, and collaborate seamlessly from a single intuitive dashboard.",
|
|
44
44
|
version: 1,
|
|
45
45
|
},
|
|
46
46
|
],
|
|
@@ -62,7 +62,7 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
62
62
|
link: {
|
|
63
63
|
type: "custom",
|
|
64
64
|
appearance: "default",
|
|
65
|
-
label: "
|
|
65
|
+
label: "Start free trial",
|
|
66
66
|
url: "/sign-up",
|
|
67
67
|
},
|
|
68
68
|
},
|
|
@@ -70,8 +70,8 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
70
70
|
link: {
|
|
71
71
|
type: "custom",
|
|
72
72
|
appearance: "outline",
|
|
73
|
-
label: "
|
|
74
|
-
url: "/
|
|
73
|
+
label: "Watch demo",
|
|
74
|
+
url: "/demo",
|
|
75
75
|
},
|
|
76
76
|
},
|
|
77
77
|
],
|
|
@@ -79,75 +79,75 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
79
79
|
layout: [
|
|
80
80
|
{
|
|
81
81
|
blockType: "featureShowcase",
|
|
82
|
-
blockName: "
|
|
83
|
-
label: "
|
|
84
|
-
headline: "
|
|
82
|
+
blockName: "Project Overview",
|
|
83
|
+
label: "Project Management",
|
|
84
|
+
headline: "See all your projects at a glance",
|
|
85
85
|
description: createParagraph(
|
|
86
|
-
"
|
|
86
|
+
"Get a bird's-eye view of every project, task, and deadline. Customizable views let you organize work the way that makes sense for your team.",
|
|
87
87
|
),
|
|
88
88
|
link: {
|
|
89
89
|
type: "custom",
|
|
90
|
-
label: "See
|
|
90
|
+
label: "See project views",
|
|
91
91
|
url: "/features",
|
|
92
92
|
appearance: "default",
|
|
93
93
|
},
|
|
94
94
|
imagePosition: "right",
|
|
95
95
|
features: [
|
|
96
|
-
{ text: "
|
|
97
|
-
{ text: "
|
|
98
|
-
{ text: "
|
|
99
|
-
{ text: "
|
|
96
|
+
{ text: "List, board, and calendar views" },
|
|
97
|
+
{ text: "Custom project templates" },
|
|
98
|
+
{ text: "Milestone tracking" },
|
|
99
|
+
{ text: "Dependencies and blockers" },
|
|
100
100
|
],
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
blockType: "featureShowcase",
|
|
104
|
-
blockName: "
|
|
105
|
-
label: "
|
|
106
|
-
headline: "
|
|
104
|
+
blockName: "Task Management",
|
|
105
|
+
label: "Task Tracking",
|
|
106
|
+
headline: "Never lose track of a task again",
|
|
107
107
|
description: createParagraph(
|
|
108
|
-
"
|
|
108
|
+
"Create, assign, and track tasks with ease. Set priorities, due dates, and assignees. Get notifications when things change so nothing falls through the cracks.",
|
|
109
109
|
),
|
|
110
110
|
link: {
|
|
111
111
|
type: "custom",
|
|
112
|
-
label: "Explore
|
|
112
|
+
label: "Explore task features",
|
|
113
113
|
url: "/features",
|
|
114
114
|
appearance: "default",
|
|
115
115
|
},
|
|
116
116
|
imagePosition: "left",
|
|
117
117
|
features: [
|
|
118
|
-
{ text: "
|
|
119
|
-
{ text: "
|
|
120
|
-
{ text: "
|
|
121
|
-
{ text: "
|
|
118
|
+
{ text: "Drag-and-drop task management" },
|
|
119
|
+
{ text: "Priority levels and labels" },
|
|
120
|
+
{ text: "Due dates and reminders" },
|
|
121
|
+
{ text: "Subtasks and checklists" },
|
|
122
122
|
],
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
blockType: "featureShowcase",
|
|
126
|
-
blockName: "
|
|
127
|
-
label: "
|
|
128
|
-
headline: "
|
|
126
|
+
blockName: "Team Collaboration",
|
|
127
|
+
label: "Team Features",
|
|
128
|
+
headline: "Collaborate in real-time with your team",
|
|
129
129
|
description: createParagraph(
|
|
130
|
-
"
|
|
130
|
+
"Comments, mentions, and activity feeds keep everyone in sync. Share files, leave feedback, and make decisions together without leaving the dashboard.",
|
|
131
131
|
),
|
|
132
132
|
link: {
|
|
133
133
|
type: "custom",
|
|
134
|
-
label: "Learn about
|
|
134
|
+
label: "Learn about collaboration",
|
|
135
135
|
url: "/features",
|
|
136
136
|
appearance: "default",
|
|
137
137
|
},
|
|
138
138
|
imagePosition: "right",
|
|
139
139
|
features: [
|
|
140
|
-
{ text: "
|
|
141
|
-
{ text: "
|
|
142
|
-
{ text: "
|
|
143
|
-
{ text: "
|
|
140
|
+
{ text: "Comments and @mentions" },
|
|
141
|
+
{ text: "File sharing and attachments" },
|
|
142
|
+
{ text: "Activity feed and updates" },
|
|
143
|
+
{ text: "Team workload view" },
|
|
144
144
|
],
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
blockType: "bentoFeatures",
|
|
148
148
|
blockName: "Dashboard Features",
|
|
149
|
-
heading: "Everything
|
|
150
|
-
subheading: "A complete
|
|
149
|
+
heading: "Everything your team needs",
|
|
150
|
+
subheading: "A complete workspace without the complexity",
|
|
151
151
|
features: [
|
|
152
152
|
{
|
|
153
153
|
size: "small",
|
|
@@ -168,21 +168,21 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
168
168
|
style: "default",
|
|
169
169
|
icon: "search",
|
|
170
170
|
title: "Global Search",
|
|
171
|
-
description: createParagraph("Find any
|
|
171
|
+
description: createParagraph("Find any project, task, or document instantly."),
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
size: "small",
|
|
175
175
|
style: "primary",
|
|
176
176
|
icon: "shield",
|
|
177
177
|
title: "Activity Logs",
|
|
178
|
-
description: createParagraph("Full audit trail of all
|
|
178
|
+
description: createParagraph("Full audit trail of all team activity."),
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
size: "small",
|
|
182
182
|
style: "default",
|
|
183
183
|
icon: "settings",
|
|
184
|
-
title: "
|
|
185
|
-
description: createParagraph("
|
|
184
|
+
title: "Customization",
|
|
185
|
+
description: createParagraph("Personalize your workspace and views."),
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
size: "small",
|
|
@@ -197,14 +197,14 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
197
197
|
blockType: "proofBanner",
|
|
198
198
|
blockName: "CTA Section",
|
|
199
199
|
style: "centered",
|
|
200
|
-
headline: "
|
|
201
|
-
subtext: "
|
|
200
|
+
headline: "Get your team organized today",
|
|
201
|
+
subtext: "A powerful dashboard that scales with your business. Free to start.",
|
|
202
202
|
links: [
|
|
203
203
|
{
|
|
204
204
|
link: {
|
|
205
205
|
type: "custom",
|
|
206
206
|
appearance: "default",
|
|
207
|
-
label: "
|
|
207
|
+
label: "Start free trial",
|
|
208
208
|
url: "/sign-up",
|
|
209
209
|
},
|
|
210
210
|
},
|
|
@@ -212,8 +212,8 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
212
212
|
link: {
|
|
213
213
|
type: "custom",
|
|
214
214
|
appearance: "outline",
|
|
215
|
-
label: "
|
|
216
|
-
url: "/
|
|
215
|
+
label: "Watch demo",
|
|
216
|
+
url: "/demo",
|
|
217
217
|
},
|
|
218
218
|
},
|
|
219
219
|
],
|
|
@@ -221,8 +221,8 @@ export const dashboardPage = (): Partial<Page> => {
|
|
|
221
221
|
],
|
|
222
222
|
meta: {
|
|
223
223
|
description:
|
|
224
|
-
"Manage
|
|
225
|
-
title: "
|
|
224
|
+
"Manage projects, track tasks, and collaborate with your team from one unified dashboard. Intuitive interface, powerful features, no complexity.",
|
|
225
|
+
title: "Dashboard — SaaSify Team Command Center",
|
|
226
226
|
},
|
|
227
227
|
}
|
|
228
228
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
1
|
+
export { integrationsPage } from "./templates"
|
|
2
|
+
export { analyticsPage } from "./monetization"
|
|
3
|
+
export { securityPage } from "./seo"
|
|
4
4
|
export { dashboardPage } from "./dashboard"
|
|
5
5
|
export { automationPage } from "./automation"
|
|
6
|
-
export {
|
|
6
|
+
export { workflowsPage } from "./custom-fields"
|