directus-template-cli 0.3.6 → 0.4.0
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/README.md +5 -2
- package/dist/commands/apply.d.ts +1 -1
- package/dist/commands/apply.js +80 -50
- package/dist/commands/extract.d.ts +1 -2
- package/dist/commands/extract.js +13 -18
- package/dist/lib/extract/extract-assets.d.ts +182 -2
- package/dist/lib/extract/extract-assets.js +25 -32
- package/dist/lib/extract/extract-collections.d.ts +4 -0
- package/dist/lib/extract/extract-collections.js +24 -0
- package/dist/lib/extract/extract-content.d.ts +1 -1
- package/dist/lib/extract/extract-content.js +18 -18
- package/dist/lib/extract/extract-dashboards.d.ts +8 -0
- package/dist/lib/extract/extract-dashboards.js +42 -0
- package/dist/lib/extract/extract-fields.d.ts +4 -0
- package/dist/lib/extract/extract-fields.js +30 -0
- package/dist/lib/extract/extract-files.js +11 -34
- package/dist/lib/extract/extract-flows.d.ts +8 -0
- package/dist/lib/extract/extract-flows.js +42 -0
- package/dist/lib/extract/extract-folders.d.ts +1 -1
- package/dist/lib/extract/extract-folders.js +12 -13
- package/dist/lib/extract/extract-permissions.d.ts +1 -1
- package/dist/lib/extract/extract-permissions.js +13 -13
- package/dist/lib/extract/extract-presets.js +15 -11
- package/dist/lib/extract/extract-relations.d.ts +4 -0
- package/dist/lib/extract/extract-relations.js +33 -0
- package/dist/lib/extract/extract-roles.js +11 -22
- package/dist/lib/extract/extract-schema.js +14 -14
- package/dist/lib/extract/extract-settings.d.ts +4 -0
- package/dist/lib/extract/extract-settings.js +22 -0
- package/dist/lib/extract/extract-translations.d.ts +4 -0
- package/dist/lib/extract/extract-translations.js +24 -0
- package/dist/lib/extract/extract-users.d.ts +1 -1
- package/dist/lib/extract/extract-users.js +14 -36
- package/dist/lib/extract/index.d.ts +1 -1
- package/dist/lib/extract/index.js +27 -32
- package/dist/lib/interfaces.d.ts +1 -1
- package/dist/lib/load/index.d.ts +1 -1
- package/dist/lib/load/index.js +33 -44
- package/dist/lib/load/load-collections.d.ts +4 -0
- package/dist/lib/load/load-collections.js +66 -0
- package/dist/lib/load/load-dashboards.d.ts +2 -1
- package/dist/lib/load/load-dashboards.js +33 -3
- package/dist/lib/load/load-data.d.ts +1 -1
- package/dist/lib/load/load-data.js +87 -60
- package/dist/lib/load/load-files.d.ts +1 -1
- package/dist/lib/load/load-files.js +23 -20
- package/dist/lib/load/load-flows.d.ts +2 -2
- package/dist/lib/load/load-flows.js +43 -9
- package/dist/lib/load/load-folders.js +15 -11
- package/dist/lib/load/load-permissions.d.ts +1 -1
- package/dist/lib/load/load-permissions.js +22 -21
- package/dist/lib/load/load-presets.d.ts +1 -2
- package/dist/lib/load/load-presets.js +16 -19
- package/dist/lib/load/load-relations.d.ts +4 -0
- package/dist/lib/load/load-relations.js +33 -0
- package/dist/lib/load/load-roles.d.ts +1 -1
- package/dist/lib/load/load-roles.js +20 -10
- package/dist/lib/load/load-schema.d.ts +14 -2
- package/dist/lib/load/load-schema.js +85 -10
- package/dist/lib/load/load-settings.d.ts +1 -1
- package/dist/lib/load/load-settings.js +10 -4
- package/dist/lib/load/load-translations.d.ts +1 -0
- package/dist/lib/load/load-translations.js +21 -0
- package/dist/lib/load/load-users.d.ts +1 -2
- package/dist/lib/load/load-users.js +19 -8
- package/dist/lib/sdk.d.ts +13 -0
- package/dist/lib/sdk.js +26 -0
- package/dist/lib/utils/auth.d.ts +2 -2
- package/dist/lib/utils/auth.js +12 -11
- package/dist/lib/utils/check-template.d.ts +1 -0
- package/dist/lib/utils/check-template.js +32 -0
- package/dist/lib/utils/filter-fields.js +5 -5
- package/dist/lib/utils/get-role-ids.d.ts +55 -0
- package/dist/lib/utils/get-role-ids.js +14 -0
- package/dist/lib/utils/log-error.d.ts +14 -0
- package/dist/lib/utils/log-error.js +25 -0
- package/dist/lib/utils/path.d.ts +7 -0
- package/dist/lib/utils/path.js +20 -0
- package/dist/lib/utils/read-file.d.ts +0 -1
- package/dist/lib/utils/read-file.js +7 -9
- package/dist/lib/utils/read-templates.js +2 -2
- package/dist/lib/utils/system-fields.d.ts +20 -0
- package/dist/lib/utils/system-fields.js +159 -0
- package/dist/lib/utils/template-defaults.js +8 -11
- package/dist/lib/utils/transform-github-url.d.ts +1 -0
- package/dist/lib/utils/transform-github-url.js +15 -0
- package/dist/lib/utils/validate-url.js +1 -1
- package/dist/lib/utils/write-to-file.js +4 -4
- package/oclif.manifest.json +34 -16
- package/package.json +25 -23
- package/dist/lib/api.d.ts +0 -15
- package/dist/lib/api.js +0 -37
- package/dist/lib/extract/extract-from-endpoint.d.ts +0 -4
- package/dist/lib/extract/extract-from-endpoint.js +0 -23
- package/dist/lib/load/load-operations.d.ts +0 -1
- package/dist/lib/load/load-operations.js +0 -29
- package/dist/lib/load/load-panels.d.ts +0 -0
- package/dist/lib/load/load-panels.js +0 -0
- package/dist/lib/utils/delete-items.d.ts +0 -1
- package/dist/lib/utils/delete-items.js +0 -15
- package/dist/lib/utils/load-to-destination.d.ts +0 -1
- package/dist/lib/utils/load-to-destination.js +0 -14
- package/templates/agencyos/README.md +0 -11
- package/templates/agencyos/package.json +0 -11
- package/templates/agencyos/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
- package/templates/agencyos/src/assets/08242513-ca8f-471f-b69b-82703a19d1e5.svg +0 -14
- package/templates/agencyos/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
- package/templates/agencyos/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
- package/templates/agencyos/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
- package/templates/agencyos/src/assets/1f69c0b8-19b7-49d7-b420-bedad577a079.png +0 -0
- package/templates/agencyos/src/assets/21e179ab-72c3-4350-b46a-fadd16f5652e.svg +0 -1
- package/templates/agencyos/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
- package/templates/agencyos/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
- package/templates/agencyos/src/assets/2b4a0ba0-52c7-4e10-b191-c803d8da6a36.png +0 -0
- package/templates/agencyos/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
- package/templates/agencyos/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
- package/templates/agencyos/src/assets/44a4e780-d59b-4fa5-9b26-1c4b447474d2.jpg +0 -0
- package/templates/agencyos/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
- package/templates/agencyos/src/assets/5419bf05-9ab2-484b-a69d-d09b18602cf1.svg +0 -1
- package/templates/agencyos/src/assets/5a6dfe1e-7e5b-4a5f-9f6c-983777a67c05.svg +0 -1
- package/templates/agencyos/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
- package/templates/agencyos/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
- package/templates/agencyos/src/assets/6789bc72-ab83-40bf-8152-d6f2bafbc2a8.png +0 -0
- package/templates/agencyos/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
- package/templates/agencyos/src/assets/690c2042-e3ad-46f4-9cd8-095a7b3a1df7.svg +0 -3
- package/templates/agencyos/src/assets/6a1ca349-d7ab-4f43-9284-c61671e145f2.svg +0 -22
- package/templates/agencyos/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
- package/templates/agencyos/src/assets/6ff389c5-3ecb-4219-8f72-f10326aab421.jpg +0 -0
- package/templates/agencyos/src/assets/7647f4c2-9880-433a-bb8e-69b0c30ae31e.svg +0 -1
- package/templates/agencyos/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
- package/templates/agencyos/src/assets/793e9bf7-c646-4588-8865-fe22556070ff.svg +0 -1
- package/templates/agencyos/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
- package/templates/agencyos/src/assets/88b95737-7ff4-4a09-8523-362d42caa9f9.jpg +0 -0
- package/templates/agencyos/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
- package/templates/agencyos/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
- package/templates/agencyos/src/assets/ac905071-0643-4337-8f53-48ed45b1ccf2.jpg +0 -0
- package/templates/agencyos/src/assets/b1a3fd77-8e62-4678-9d44-333a30eec13b.jpg +0 -0
- package/templates/agencyos/src/assets/b210ecec-860f-4057-bab9-18c044b6e129.jpg +0 -0
- package/templates/agencyos/src/assets/b9db00d9-535f-4e24-8a46-5f7e5fc65bf2.jpg +0 -0
- package/templates/agencyos/src/assets/c0253924-38cd-4ca0-9989-9c0a57ec076a.png +0 -0
- package/templates/agencyos/src/assets/ce0b845f-f8d8-4856-b0af-1df4e3a838cc.jpg +0 -0
- package/templates/agencyos/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
- package/templates/agencyos/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
- package/templates/agencyos/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
- package/templates/agencyos/src/assets/d94c9355-d89e-4229-941a-62b8525fd69a.png +0 -0
- package/templates/agencyos/src/assets/df0745c2-b6e3-4b37-b64d-55a4eb0033ab.avif +0 -0
- package/templates/agencyos/src/assets/df979753-946b-4d93-954e-e24367388d2c.svg +0 -1
- package/templates/agencyos/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
- package/templates/agencyos/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
- package/templates/agencyos/src/assets/eef7d7b1-3bf9-4647-90c1-a16c24161335.svg +0 -4
- package/templates/agencyos/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
- package/templates/agencyos/src/assets/f81e1a85-5a9c-41ef-9ef3-6a9349722daa.jpg +0 -0
- package/templates/agencyos/src/assets/fbae19f3-8739-4048-a20f-89ebbf59b032.jpg +0 -0
- package/templates/agencyos/src/collections.json +0 -3007
- package/templates/agencyos/src/content/block_button.json +0 -50
- package/templates/agencyos/src/content/block_button_group.json +0 -27
- package/templates/agencyos/src/content/block_columns.json +0 -18
- package/templates/agencyos/src/content/block_columns_rows.json +0 -47
- package/templates/agencyos/src/content/block_cta.json +0 -9
- package/templates/agencyos/src/content/block_divider.json +0 -14
- package/templates/agencyos/src/content/block_faqs.json +0 -90
- package/templates/agencyos/src/content/block_form.json +0 -26
- package/templates/agencyos/src/content/block_gallery.json +0 -19
- package/templates/agencyos/src/content/block_gallery_files.json +0 -102
- package/templates/agencyos/src/content/block_hero.json +0 -20
- package/templates/agencyos/src/content/block_html.json +0 -1
- package/templates/agencyos/src/content/block_logocloud.json +0 -24
- package/templates/agencyos/src/content/block_logocloud_logos.json +0 -50
- package/templates/agencyos/src/content/block_quote.json +0 -14
- package/templates/agencyos/src/content/block_richtext.json +0 -58
- package/templates/agencyos/src/content/block_step_items.json +0 -47
- package/templates/agencyos/src/content/block_steps.json +0 -24
- package/templates/agencyos/src/content/block_team.json +0 -14
- package/templates/agencyos/src/content/block_testimonial_slider_items.json +0 -42
- package/templates/agencyos/src/content/block_testimonials.json +0 -13
- package/templates/agencyos/src/content/block_video.json +0 -10
- package/templates/agencyos/src/content/categories.json +0 -38
- package/templates/agencyos/src/content/contacts.json +0 -46
- package/templates/agencyos/src/content/conversations.json +0 -1
- package/templates/agencyos/src/content/forms.json +0 -129
- package/templates/agencyos/src/content/globals.json +0 -52
- package/templates/agencyos/src/content/help_articles.json +0 -1
- package/templates/agencyos/src/content/help_collections.json +0 -20
- package/templates/agencyos/src/content/help_feedback.json +0 -122
- package/templates/agencyos/src/content/inbox.json +0 -15
- package/templates/agencyos/src/content/messages.json +0 -1
- package/templates/agencyos/src/content/navigation.json +0 -34
- package/templates/agencyos/src/content/navigation_items.json +0 -185
- package/templates/agencyos/src/content/organization_addresses.json +0 -18
- package/templates/agencyos/src/content/organizations.json +0 -50
- package/templates/agencyos/src/content/organizations_contacts.json +0 -14
- package/templates/agencyos/src/content/os_activities.json +0 -23
- package/templates/agencyos/src/content/os_activity_contacts.json +0 -7
- package/templates/agencyos/src/content/os_deal_contacts.json +0 -9
- package/templates/agencyos/src/content/os_deal_stages.json +0 -68
- package/templates/agencyos/src/content/os_deals.json +0 -27
- package/templates/agencyos/src/content/os_email_templates.json +0 -13
- package/templates/agencyos/src/content/os_expenses.json +0 -22
- package/templates/agencyos/src/content/os_invoice_items.json +0 -65
- package/templates/agencyos/src/content/os_invoices.json +0 -29
- package/templates/agencyos/src/content/os_items.json +0 -17
- package/templates/agencyos/src/content/os_payment_terms.json +0 -18
- package/templates/agencyos/src/content/os_payments.json +0 -291
- package/templates/agencyos/src/content/os_project_contacts.json +0 -8
- package/templates/agencyos/src/content/os_project_files.json +0 -1
- package/templates/agencyos/src/content/os_project_templates.json +0 -467
- package/templates/agencyos/src/content/os_project_updates.json +0 -1
- package/templates/agencyos/src/content/os_projects.json +0 -50
- package/templates/agencyos/src/content/os_proposal_approvals.json +0 -1
- package/templates/agencyos/src/content/os_proposal_blocks.json +0 -134
- package/templates/agencyos/src/content/os_proposal_contacts.json +0 -8
- package/templates/agencyos/src/content/os_proposals.json +0 -33
- package/templates/agencyos/src/content/os_settings.json +0 -6
- package/templates/agencyos/src/content/os_task_files.json +0 -1
- package/templates/agencyos/src/content/os_tasks.json +0 -464
- package/templates/agencyos/src/content/os_tax_rates.json +0 -24
- package/templates/agencyos/src/content/page_blocks.json +0 -170
- package/templates/agencyos/src/content/pages.json +0 -96
- package/templates/agencyos/src/content/pages_blog.json +0 -7
- package/templates/agencyos/src/content/pages_projects.json +0 -6
- package/templates/agencyos/src/content/post_gallery_items.json +0 -32
- package/templates/agencyos/src/content/posts.json +0 -235
- package/templates/agencyos/src/content/redirects.json +0 -12
- package/templates/agencyos/src/content/seo.json +0 -52
- package/templates/agencyos/src/content/team.json +0 -128
- package/templates/agencyos/src/content/testimonials.json +0 -66
- package/templates/agencyos/src/dashboards.json +0 -64
- package/templates/agencyos/src/files.json +0 -1129
- package/templates/agencyos/src/flows.json +0 -451
- package/templates/agencyos/src/folders.json +0 -104
- package/templates/agencyos/src/operations.json +0 -717
- package/templates/agencyos/src/panels.json +0 -1019
- package/templates/agencyos/src/permissions.json +0 -5533
- package/templates/agencyos/src/presets.json +0 -2421
- package/templates/agencyos/src/public-permissions.json +0 -629
- package/templates/agencyos/src/roles.json +0 -46
- package/templates/agencyos/src/schema/snapshot.json +0 -39415
- package/templates/agencyos/src/settings.json +0 -99
- package/templates/agencyos/src/users.json +0 -147
- package/templates/website/README.md +0 -15
- package/templates/website/package.json +0 -11
- package/templates/website/src/assets/004e37f7-765e-4339-8d44-987729e47898.png +0 -0
- package/templates/website/src/assets/008b1c0e-bdd3-4c5f-a029-b9c07582a42d.jpg +0 -0
- package/templates/website/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
- package/templates/website/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
- package/templates/website/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
- package/templates/website/src/assets/18bf5269-9986-48c7-b607-01b77283df3b.png +0 -0
- package/templates/website/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
- package/templates/website/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
- package/templates/website/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
- package/templates/website/src/assets/284c190b-0ebb-4b3e-847d-c260b793b77c.png +0 -0
- package/templates/website/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
- package/templates/website/src/assets/3ac899c4-4bf9-4733-b2c4-b259c69faf46.png +0 -0
- package/templates/website/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
- package/templates/website/src/assets/40a0a417-231e-4819-86bf-66e96ec64852.svg +0 -3
- package/templates/website/src/assets/45140116-7656-4226-99b6-fd750722a083.svg +0 -3
- package/templates/website/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
- package/templates/website/src/assets/57c6e801-9ba1-46eb-beb7-96cf7c497c92.svg +0 -1
- package/templates/website/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
- package/templates/website/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
- package/templates/website/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
- package/templates/website/src/assets/68ee3ce3-bc8e-4901-b3a6-8a23afda0fa0.jpg +0 -0
- package/templates/website/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
- package/templates/website/src/assets/72eea8c7-72fe-4ef2-9e57-524f7cb886a4.jpg +0 -0
- package/templates/website/src/assets/72f6f5a0-9a07-422f-b82f-b9e295ce5afa.svg +0 -4
- package/templates/website/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
- package/templates/website/src/assets/7834aacc-d78c-4a55-ba92-d7b5d74188c1.png +0 -0
- package/templates/website/src/assets/7a5b47f6-d648-48f9-bf93-4bfafda48940.png +0 -0
- package/templates/website/src/assets/7c04cbdd-4b48-41aa-94d7-fc7c17373b1a.png +0 -0
- package/templates/website/src/assets/82b872b1-ff96-4af6-b7f1-878e60c3c448.png +0 -0
- package/templates/website/src/assets/840ec616-acad-412e-be79-485a702f9a55.svg +0 -1
- package/templates/website/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
- package/templates/website/src/assets/8bc1e7b3-b795-46af-bac4-34f7d90b902f.JPG +0 -0
- package/templates/website/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
- package/templates/website/src/assets/9778a2b4-27de-4035-af5a-f58897578787.png +0 -0
- package/templates/website/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
- package/templates/website/src/assets/b626a403-5f09-4463-9715-44b2bd34eb26.jpg +0 -0
- package/templates/website/src/assets/c38f6e9e-7bb5-46c7-8266-b27ab96a1282.png +0 -0
- package/templates/website/src/assets/c983bd13-da09-4c90-8e65-ae6a92093df8.png +0 -0
- package/templates/website/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
- package/templates/website/src/assets/d304528e-9000-4530-92cf-bb04891e8d5d.jpg +0 -0
- package/templates/website/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
- package/templates/website/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
- package/templates/website/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
- package/templates/website/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
- package/templates/website/src/assets/ea18cbf2-3c4f-488b-a68c-2d3a64cc9137.png +0 -0
- package/templates/website/src/assets/eb8e4c86-92ac-4697-9634-2e376f5d6015.png +0 -0
- package/templates/website/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
- package/templates/website/src/collections.json +0 -1788
- package/templates/website/src/content/block_cardgroup.json +0 -26
- package/templates/website/src/content/block_cardgroup_cards.json +0 -1
- package/templates/website/src/content/block_cardgroup_posts.json +0 -32
- package/templates/website/src/content/block_columns.json +0 -21
- package/templates/website/src/content/block_columns_rows.json +0 -47
- package/templates/website/src/content/block_cta.json +0 -15
- package/templates/website/src/content/block_faqs.json +0 -45
- package/templates/website/src/content/block_form.json +0 -26
- package/templates/website/src/content/block_gallery.json +0 -15
- package/templates/website/src/content/block_gallery_files.json +0 -38
- package/templates/website/src/content/block_hero.json +0 -145
- package/templates/website/src/content/block_html.json +0 -1
- package/templates/website/src/content/block_logocloud.json +0 -16
- package/templates/website/src/content/block_logocloud_files.json +0 -44
- package/templates/website/src/content/block_quote.json +0 -11
- package/templates/website/src/content/block_richtext.json +0 -32
- package/templates/website/src/content/block_steps.json +0 -14
- package/templates/website/src/content/block_steps_items.json +0 -26
- package/templates/website/src/content/block_team.json +0 -8
- package/templates/website/src/content/block_testimonials.json +0 -13
- package/templates/website/src/content/block_testimonials_items.json +0 -26
- package/templates/website/src/content/block_video.json +0 -10
- package/templates/website/src/content/blog_settings.json +0 -8
- package/templates/website/src/content/categories.json +0 -38
- package/templates/website/src/content/events.json +0 -1
- package/templates/website/src/content/forms.json +0 -92
- package/templates/website/src/content/globals.json +0 -57
- package/templates/website/src/content/inbox.json +0 -21
- package/templates/website/src/content/metrics.json +0 -1
- package/templates/website/src/content/navigation.json +0 -30
- package/templates/website/src/content/navigation_items.json +0 -140
- package/templates/website/src/content/pages.json +0 -123
- package/templates/website/src/content/pages_blocks.json +0 -310
- package/templates/website/src/content/posts.json +0 -120
- package/templates/website/src/content/projects.json +0 -48
- package/templates/website/src/content/projects_files.json +0 -44
- package/templates/website/src/content/projects_settings.json +0 -6
- package/templates/website/src/content/redirects.json +0 -12
- package/templates/website/src/content/seo.json +0 -278
- package/templates/website/src/content/team.json +0 -132
- package/templates/website/src/content/testimonials.json +0 -66
- package/templates/website/src/dashboards.json +0 -38
- package/templates/website/src/fields.json +0 -27761
- package/templates/website/src/files.json +0 -1100
- package/templates/website/src/flows.json +0 -131
- package/templates/website/src/folders.json +0 -52
- package/templates/website/src/operations.json +0 -214
- package/templates/website/src/panels.json +0 -433
- package/templates/website/src/permissions.json +0 -1556
- package/templates/website/src/presets.json +0 -1254
- package/templates/website/src/public-permissions.json +0 -511
- package/templates/website/src/roles.json +0 -70
- package/templates/website/src/schema/snapshot.json +0 -17018
- package/templates/website/src/settings.json +0 -66
- package/templates/website/src/users.json +0 -194
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "3d583c03-4909-4001-aad2-cd7af6ec53af",
|
|
4
|
-
"user_updated": null,
|
|
5
|
-
"button_group": "0b1512d8-3bec-4dbc-919c-4514bbe37dc1",
|
|
6
|
-
"post": null,
|
|
7
|
-
"page": "0945b7d7-9643-4a90-948d-a5d6659014e0",
|
|
8
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
9
|
-
"date_updated": null,
|
|
10
|
-
"date_created": "2023-10-20T18:05:24.253Z",
|
|
11
|
-
"variant": "solid",
|
|
12
|
-
"color": "primary",
|
|
13
|
-
"label": "Start Your Project",
|
|
14
|
-
"external_url": null,
|
|
15
|
-
"type": "pages",
|
|
16
|
-
"sort": 1
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": "47ddfe4e-721a-483f-a09b-4c10fe0cec1a",
|
|
20
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
21
|
-
"button_group": "aed01afb-490d-42d3-bbf4-cf64081494b9",
|
|
22
|
-
"post": null,
|
|
23
|
-
"page": "ac35a4c6-ca73-48c4-9c02-37a50d4bc736",
|
|
24
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
25
|
-
"date_updated": "2023-10-19T16:23:00.009Z",
|
|
26
|
-
"date_created": "2023-10-19T14:24:40.856Z",
|
|
27
|
-
"variant": "solid",
|
|
28
|
-
"color": "primary",
|
|
29
|
-
"label": "Learn More",
|
|
30
|
-
"external_url": null,
|
|
31
|
-
"type": "pages",
|
|
32
|
-
"sort": null
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"id": "b74af9dd-cc34-451c-88cf-c3e14c39cf4f",
|
|
36
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
37
|
-
"button_group": "aed01afb-490d-42d3-bbf4-cf64081494b9",
|
|
38
|
-
"post": null,
|
|
39
|
-
"page": "0945b7d7-9643-4a90-948d-a5d6659014e0",
|
|
40
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
41
|
-
"date_updated": "2023-10-19T16:23:00.040Z",
|
|
42
|
-
"date_created": "2023-10-19T14:24:40.906Z",
|
|
43
|
-
"variant": "outline",
|
|
44
|
-
"color": "primary",
|
|
45
|
-
"label": "Start Your Project",
|
|
46
|
-
"external_url": null,
|
|
47
|
-
"type": "pages",
|
|
48
|
-
"sort": null
|
|
49
|
-
}
|
|
50
|
-
]
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"user_updated": null,
|
|
4
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
5
|
-
"id": "0b1512d8-3bec-4dbc-919c-4514bbe37dc1",
|
|
6
|
-
"date_updated": null,
|
|
7
|
-
"date_created": "2023-10-20T18:05:24.236Z",
|
|
8
|
-
"alignment": "left",
|
|
9
|
-
"sort": null,
|
|
10
|
-
"buttons": [
|
|
11
|
-
"3d583c03-4909-4001-aad2-cd7af6ec53af"
|
|
12
|
-
]
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
16
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
17
|
-
"id": "aed01afb-490d-42d3-bbf4-cf64081494b9",
|
|
18
|
-
"date_updated": "2023-10-19T16:22:59.996Z",
|
|
19
|
-
"date_created": "2023-10-19T14:24:40.830Z",
|
|
20
|
-
"alignment": "left",
|
|
21
|
-
"sort": null,
|
|
22
|
-
"buttons": [
|
|
23
|
-
"47ddfe4e-721a-483f-a09b-4c10fe0cec1a",
|
|
24
|
-
"b74af9dd-cc34-451c-88cf-c3e14c39cf4f"
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
]
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
4
|
-
"title": "Our Services",
|
|
5
|
-
"headline": "<p>We can <em>help you</em></p>",
|
|
6
|
-
"rows": [
|
|
7
|
-
"3df2d0b7-6041-4a11-9e97-2baec92feb87",
|
|
8
|
-
"abe68701-5815-489f-afdb-f267a489dfe0",
|
|
9
|
-
"093d4e39-4a34-47cd-954d-ef3cadcef45b"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "f79740a1-66ce-4ad9-83f3-a32721e5e44d",
|
|
14
|
-
"title": "Columns",
|
|
15
|
-
"headline": "<p>These are <em>several rows</em> of image and text columns.</p>",
|
|
16
|
-
"rows": []
|
|
17
|
-
}
|
|
18
|
-
]
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"button_group": null,
|
|
4
|
-
"image": "6dad2008-3af5-407e-827e-da5744223181",
|
|
5
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
6
|
-
"id": "3df2d0b7-6041-4a11-9e97-2baec92feb87",
|
|
7
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
8
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
9
|
-
"date_created": "2023-09-21T02:42:30.723Z",
|
|
10
|
-
"date_updated": "2023-09-21T02:44:42.564Z",
|
|
11
|
-
"image_position": "left",
|
|
12
|
-
"title": "UX / UI Design",
|
|
13
|
-
"headline": "It all starts with design",
|
|
14
|
-
"content": "<p>With our user-centered design approach, we'll create an online experience that is easy and enjoyable for your customers, helping you build trust and drive conversions. Don't let a poor user experience hold you back.</p>",
|
|
15
|
-
"sort": 1
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"button_group": null,
|
|
19
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
20
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
21
|
-
"id": "abe68701-5815-489f-afdb-f267a489dfe0",
|
|
22
|
-
"user_updated": null,
|
|
23
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
24
|
-
"date_created": "2023-09-21T02:44:42.509Z",
|
|
25
|
-
"date_updated": null,
|
|
26
|
-
"image_position": "right",
|
|
27
|
-
"title": "Web Application Development",
|
|
28
|
-
"headline": "Develop your application",
|
|
29
|
-
"content": "<p>We specialize in developing web applications that are tailored to meet the unique needs of your business. Whether you need a custom CRM system, a project management tool, or a complex e-commerce platform, our team of skilled developers can build a web application that is secure, scalable, and easy to use. We use the latest web development technologies and frameworks to ensure that your application is fast, reliable, and future-proof.</p>",
|
|
30
|
-
"sort": 2
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"button_group": null,
|
|
34
|
-
"image": "793e9bf7-c646-4588-8865-fe22556070ff",
|
|
35
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
36
|
-
"id": "093d4e39-4a34-47cd-954d-ef3cadcef45b",
|
|
37
|
-
"user_updated": null,
|
|
38
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
39
|
-
"date_created": "2023-09-21T02:44:42.551Z",
|
|
40
|
-
"date_updated": null,
|
|
41
|
-
"image_position": "left",
|
|
42
|
-
"title": "Mobile Application Development",
|
|
43
|
-
"headline": "Mobile apps without the headache",
|
|
44
|
-
"content": "<p>Whether you need a native iOS or Android app or a hybrid app that can run on multiple platforms, our team of skilled developers can build a mobile application that is secure, scalable, and optimized for performance. </p>",
|
|
45
|
-
"sort": 3
|
|
46
|
-
}
|
|
47
|
-
]
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"button_group": "aed01afb-490d-42d3-bbf4-cf64081494b9",
|
|
4
|
-
"id": "cf12eadb-8085-4556-949c-969d1c5f90d0",
|
|
5
|
-
"title": "Your next digital project",
|
|
6
|
-
"content": "<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea</p>",
|
|
7
|
-
"headline": "<p>Ready for an easier faster process?</p>"
|
|
8
|
-
}
|
|
9
|
-
]
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "0b7b46ed-adc5-4492-be77-c24783765dd4",
|
|
4
|
-
"title": "Getting Started"
|
|
5
|
-
},
|
|
6
|
-
{
|
|
7
|
-
"id": "7c12d0aa-b93d-4d82-92a4-cc00897e931c",
|
|
8
|
-
"title": "Why Work With Us"
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"id": "e9cff0fa-8392-4a5a-95b4-248e0a5ec8c4",
|
|
12
|
-
"title": "Current Situation"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "8759da00-c0a7-447d-924c-e106c8e4703a",
|
|
4
|
-
"alignment": "center",
|
|
5
|
-
"title": "Frequently Asked Questions",
|
|
6
|
-
"faqs": [
|
|
7
|
-
{
|
|
8
|
-
"title": "How does this work?",
|
|
9
|
-
"answer": "Lorem ipsum dipsum"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"headline": "<p>What can we <em>help </em>you with?</p>"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": "cf6a9e3d-87c4-4f18-abb3-78594b9c7ca4",
|
|
16
|
-
"alignment": "center",
|
|
17
|
-
"title": "Frequently Asked Questions",
|
|
18
|
-
"faqs": [
|
|
19
|
-
{
|
|
20
|
-
"title": "How much does the average project cost?",
|
|
21
|
-
"answer": "Lorem ipsum blah blah"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"title": "How long does it take?",
|
|
25
|
-
"answer": "Lorem ipsum blah blah"
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"headline": "<p>How can we <em>help</em> you?</p>"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"id": "ec44961c-fcda-4ce7-ad9a-ec63413bffd1",
|
|
32
|
-
"alignment": "left",
|
|
33
|
-
"title": "Frequently Asked Questions",
|
|
34
|
-
"faqs": [
|
|
35
|
-
{
|
|
36
|
-
"title": "What services does your digital agency provide?",
|
|
37
|
-
"answer": "Our agency specializes in a range of digital services including web design and development, mobile app development, digital marketing, SEO, content creation, branding, graphic design, and more."
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"title": "How long have you been in the industry?",
|
|
41
|
-
"answer": "We have been proudly serving our clients for over [X years], delivering innovative and result-driven solutions."
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"title": "Why should I choose your agency over others?",
|
|
45
|
-
"answer": "Our agency prides itself on [unique selling proposition, e.g., 'personalized service, cutting-edge technological solutions, and a history of successful projects']. Every client, big or small, is important to us, and we strive to ensure their success."
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"title": "Do you have any case studies or examples of past work?",
|
|
49
|
-
"answer": "Absolutely! You can view a selection of our work in the [Portfolio] section of our website. Each case study provides an in-depth look at the project, our approach, and the results."
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"title": "What is your project development process?",
|
|
53
|
-
"answer": "Our process typically starts with a consultation phase to understand your requirements. This is followed by planning, designing, development, testing, and finally, deployment. We emphasize clear communication and feedback at each stage."
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"title": "How do you price your services?",
|
|
57
|
-
"answer": "Pricing is determined based on the scope and complexity of the project. We provide a detailed proposal after understanding your needs, ensuring transparency and no hidden costs."
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"title": "How long will it take to complete my project?",
|
|
61
|
-
"answer": "The timeline varies depending on the project's complexity and requirements. Typically, a standard website takes [X weeks], while more intricate projects can take longer. We always aim to deliver quality work within the agreed-upon timeframe."
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"title": "Do you offer post-launch support and maintenance?",
|
|
65
|
-
"answer": "Yes, we offer various post-launch support packages to ensure your digital product remains updated, secure, and efficient."
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"title": "Can I meet the team working on my project?",
|
|
69
|
-
"answer": "Of course! We believe in fostering a strong relationship between our clients and our team. You can meet and collaborate with everyone involved in your project."
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"title": "How do you ensure the quality of your work?",
|
|
73
|
-
"answer": "Quality is paramount to us. We follow best industry practices, conduct thorough testing, and have a rigorous quality assurance process in place. Moreover, our team continuously stays updated with the latest trends and technologies."
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"title": "What industries have you worked with?",
|
|
77
|
-
"answer": "We've had the privilege to work with clients from diverse industries, including healthcare, e-commerce, finance, real estate, entertainment, and more."
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"title": "Do you offer digital marketing services?",
|
|
81
|
-
"answer": "Yes, we have a dedicated team specializing in digital marketing. From SEO, PPC, social media marketing, to content strategy, we offer a comprehensive range of services to boost your online presence."
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"title": "Will my website be mobile-friendly?",
|
|
85
|
-
"answer": "Absolutely. All our web designs are responsive, ensuring they look and function great on all devices, from desktops to smartphones."
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"headline": "<p>You've got questions? Good.</p>"
|
|
89
|
-
}
|
|
90
|
-
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "0291d044-c27b-4e82-b3e5-fcb950c96d6f",
|
|
4
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26",
|
|
5
|
-
"title": "Let's Talk",
|
|
6
|
-
"headline": "<p>Fill out this form please.</p>"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": "210e0adc-37ab-4c3a-831b-339aa67fd8db",
|
|
10
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26",
|
|
11
|
-
"title": "Contact Us",
|
|
12
|
-
"headline": "<p>Ready to talk about <em>your project?</em></p>"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": "9c077fc5-c6dc-4f62-9e89-9a4aca4d0313",
|
|
16
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26",
|
|
17
|
-
"title": "Get in Touch",
|
|
18
|
-
"headline": "<p>Contact us Now</p>"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": "cf049bb0-39b3-472d-bf1f-306bf27fec20",
|
|
22
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26",
|
|
23
|
-
"title": "Contact Us",
|
|
24
|
-
"headline": "<p>Get in<em> touch now</em></p>"
|
|
25
|
-
}
|
|
26
|
-
]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
4
|
-
"title": "Gallery",
|
|
5
|
-
"headline": "<p>This is an <em>amazing</em> gallery</p>",
|
|
6
|
-
"gallery_items": [
|
|
7
|
-
"40004399-17cc-4fde-b2af-252226411e1f",
|
|
8
|
-
"efe59a11-9246-46ae-81bd-5ac45928b5ee",
|
|
9
|
-
"ef516c98-53a8-4aaa-989a-b0febc02ebfa",
|
|
10
|
-
"d76d8817-3195-48dc-b2c0-947e54f35a36",
|
|
11
|
-
"7ccf43a5-3e60-43cc-946b-365f98e364fb",
|
|
12
|
-
"d8bff392-36ca-4adf-b5f7-04fe8bb3ca04",
|
|
13
|
-
"2c5397ce-0475-4006-a1ce-ac6efe25ce40",
|
|
14
|
-
"31ebd68e-4365-4541-93c2-94723b373d0a",
|
|
15
|
-
"4636bfe5-ad44-4b3c-9039-c9b73b95d800",
|
|
16
|
-
"a9535615-8fd9-4d37-9a43-69fc1f8a9699"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
]
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"directus_files_id": "b9db00d9-535f-4e24-8a46-5f7e5fc65bf2",
|
|
4
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
5
|
-
"user_updated": null,
|
|
6
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
7
|
-
"id": "40004399-17cc-4fde-b2af-252226411e1f",
|
|
8
|
-
"date_updated": null,
|
|
9
|
-
"date_created": "2023-10-05T12:37:23.288Z",
|
|
10
|
-
"sort": 7
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"directus_files_id": "ce0b845f-f8d8-4856-b0af-1df4e3a838cc",
|
|
14
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
15
|
-
"user_updated": null,
|
|
16
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
17
|
-
"id": "efe59a11-9246-46ae-81bd-5ac45928b5ee",
|
|
18
|
-
"date_updated": null,
|
|
19
|
-
"date_created": "2023-10-05T12:37:23.328Z",
|
|
20
|
-
"sort": 8
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"directus_files_id": "b1a3fd77-8e62-4678-9d44-333a30eec13b",
|
|
24
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
25
|
-
"user_updated": null,
|
|
26
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
27
|
-
"id": "ef516c98-53a8-4aaa-989a-b0febc02ebfa",
|
|
28
|
-
"date_updated": null,
|
|
29
|
-
"date_created": "2023-10-05T12:37:23.335Z",
|
|
30
|
-
"sort": 9
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"directus_files_id": "6ff389c5-3ecb-4219-8f72-f10326aab421",
|
|
34
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
35
|
-
"user_updated": null,
|
|
36
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
37
|
-
"id": "d76d8817-3195-48dc-b2c0-947e54f35a36",
|
|
38
|
-
"date_updated": null,
|
|
39
|
-
"date_created": "2023-10-05T12:37:23.344Z",
|
|
40
|
-
"sort": 10
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"directus_files_id": "fbae19f3-8739-4048-a20f-89ebbf59b032",
|
|
44
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
45
|
-
"user_updated": null,
|
|
46
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
47
|
-
"id": "7ccf43a5-3e60-43cc-946b-365f98e364fb",
|
|
48
|
-
"date_updated": null,
|
|
49
|
-
"date_created": "2023-10-05T12:37:23.352Z",
|
|
50
|
-
"sort": 11
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"directus_files_id": "f81e1a85-5a9c-41ef-9ef3-6a9349722daa",
|
|
54
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
55
|
-
"user_updated": null,
|
|
56
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
57
|
-
"id": "d8bff392-36ca-4adf-b5f7-04fe8bb3ca04",
|
|
58
|
-
"date_updated": null,
|
|
59
|
-
"date_created": "2023-10-05T12:37:23.359Z",
|
|
60
|
-
"sort": 12
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"directus_files_id": "44a4e780-d59b-4fa5-9b26-1c4b447474d2",
|
|
64
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
65
|
-
"user_updated": null,
|
|
66
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
67
|
-
"id": "2c5397ce-0475-4006-a1ce-ac6efe25ce40",
|
|
68
|
-
"date_updated": null,
|
|
69
|
-
"date_created": "2023-10-05T12:37:23.370Z",
|
|
70
|
-
"sort": 13
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"directus_files_id": "b210ecec-860f-4057-bab9-18c044b6e129",
|
|
74
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
75
|
-
"user_updated": null,
|
|
76
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
77
|
-
"id": "31ebd68e-4365-4541-93c2-94723b373d0a",
|
|
78
|
-
"date_updated": null,
|
|
79
|
-
"date_created": "2023-10-05T12:37:23.381Z",
|
|
80
|
-
"sort": 14
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"directus_files_id": "88b95737-7ff4-4a09-8523-362d42caa9f9",
|
|
84
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
85
|
-
"user_updated": null,
|
|
86
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
87
|
-
"id": "4636bfe5-ad44-4b3c-9039-c9b73b95d800",
|
|
88
|
-
"date_updated": null,
|
|
89
|
-
"date_created": "2023-10-05T12:59:42.323Z",
|
|
90
|
-
"sort": 15
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"directus_files_id": "ac905071-0643-4337-8f53-48ed45b1ccf2",
|
|
94
|
-
"block_gallery_id": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
95
|
-
"user_updated": null,
|
|
96
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
97
|
-
"id": "a9535615-8fd9-4d37-9a43-69fc1f8a9699",
|
|
98
|
-
"date_updated": null,
|
|
99
|
-
"date_created": "2023-10-05T13:02:00.673Z",
|
|
100
|
-
"sort": 16
|
|
101
|
-
}
|
|
102
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"button_group": "aed01afb-490d-42d3-bbf4-cf64081494b9",
|
|
4
|
-
"image": "df0745c2-b6e3-4b37-b64d-55a4eb0033ab",
|
|
5
|
-
"id": "6aa654f5-b55f-4436-a35c-1f989f26268a",
|
|
6
|
-
"image_position": "right",
|
|
7
|
-
"title": null,
|
|
8
|
-
"content": "We are a team of experienced developers and designers who build beautiful, performant, and secure web and mobile applications.",
|
|
9
|
-
"headline": "<p>Get to <em>MVP</em> faster</p>"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"button_group": "0b1512d8-3bec-4dbc-919c-4514bbe37dc1",
|
|
13
|
-
"image": "df0745c2-b6e3-4b37-b64d-55a4eb0033ab",
|
|
14
|
-
"id": "8ece685c-e903-443b-b29d-b36491709743",
|
|
15
|
-
"image_position": "left",
|
|
16
|
-
"title": "Services",
|
|
17
|
-
"content": "We help you leverage the transformative power of superior software development!",
|
|
18
|
-
"headline": "<p>Custom <em>web development and design</em> services</p>"
|
|
19
|
-
}
|
|
20
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "4a030aa9-61b5-468e-830e-c0f5df7e9598",
|
|
4
|
-
"title": "Our Clients",
|
|
5
|
-
"headline": "<p>We've built applications for national and international clients.</p>",
|
|
6
|
-
"logos": [
|
|
7
|
-
"8924ec34-40dd-4d46-8e8a-6801c5acba22",
|
|
8
|
-
"8258e0d7-d341-4c68-a42a-7b2eca8ae862",
|
|
9
|
-
"2e6e99fb-caa9-4f8c-a1c2-c224cc6e78ab",
|
|
10
|
-
"e9932b38-1c2b-4919-bb0a-2a7fd7b97121"
|
|
11
|
-
]
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
15
|
-
"title": "Tech Stack",
|
|
16
|
-
"headline": "<p>As solid as you'll find</p>",
|
|
17
|
-
"logos": [
|
|
18
|
-
"8ec8db1d-1918-4329-aa25-1f983329e09d",
|
|
19
|
-
"fa2f38e0-8b85-4f6a-8524-dc23497aa30a",
|
|
20
|
-
"6e30cf98-e952-496b-a01a-cb9c1fc98322",
|
|
21
|
-
"3d1825e9-1568-407d-b234-8a4273e51b08"
|
|
22
|
-
]
|
|
23
|
-
}
|
|
24
|
-
]
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"directus_files_id": "0dfe66dd-ceba-4dca-8907-03b2dda49443",
|
|
4
|
-
"block_logocloud_id": "4a030aa9-61b5-468e-830e-c0f5df7e9598",
|
|
5
|
-
"id": "2e6e99fb-caa9-4f8c-a1c2-c224cc6e78ab",
|
|
6
|
-
"sort": 3
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"directus_files_id": "08242513-ca8f-471f-b69b-82703a19d1e5",
|
|
10
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
11
|
-
"id": "3d1825e9-1568-407d-b234-8a4273e51b08",
|
|
12
|
-
"sort": 4
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"directus_files_id": "0dfe66dd-ceba-4dca-8907-03b2dda49443",
|
|
16
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
17
|
-
"id": "6e30cf98-e952-496b-a01a-cb9c1fc98322",
|
|
18
|
-
"sort": 3
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"directus_files_id": "08242513-ca8f-471f-b69b-82703a19d1e5",
|
|
22
|
-
"block_logocloud_id": "4a030aa9-61b5-468e-830e-c0f5df7e9598",
|
|
23
|
-
"id": "8258e0d7-d341-4c68-a42a-7b2eca8ae862",
|
|
24
|
-
"sort": 2
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"directus_files_id": "6a1ca349-d7ab-4f43-9284-c61671e145f2",
|
|
28
|
-
"block_logocloud_id": "4a030aa9-61b5-468e-830e-c0f5df7e9598",
|
|
29
|
-
"id": "8924ec34-40dd-4d46-8e8a-6801c5acba22",
|
|
30
|
-
"sort": 1
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"directus_files_id": "6a1ca349-d7ab-4f43-9284-c61671e145f2",
|
|
34
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
35
|
-
"id": "8ec8db1d-1918-4329-aa25-1f983329e09d",
|
|
36
|
-
"sort": 1
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"directus_files_id": "35a67f1b-d401-4300-a503-b8e583186f2a",
|
|
40
|
-
"block_logocloud_id": "4a030aa9-61b5-468e-830e-c0f5df7e9598",
|
|
41
|
-
"id": "e9932b38-1c2b-4919-bb0a-2a7fd7b97121",
|
|
42
|
-
"sort": 4
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"directus_files_id": "35a67f1b-d401-4300-a503-b8e583186f2a",
|
|
46
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
47
|
-
"id": "fa2f38e0-8b85-4f6a-8524-dc23497aa30a",
|
|
48
|
-
"sort": 2
|
|
49
|
-
}
|
|
50
|
-
]
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "45043f8a-7647-417b-ba77-65d09a93bcc1",
|
|
4
|
-
"title": "Ben Haynes",
|
|
5
|
-
"subtitle": "CEO at Directus",
|
|
6
|
-
"content": "<p>I think Directus is the BEST data management platform in the world. You can take that to the bank.</p>"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": "d075af36-ce41-4c26-b7b5-0b9337537a46",
|
|
10
|
-
"title": "Ricky Bobby",
|
|
11
|
-
"subtitle": "Head of Sales at MCBOE",
|
|
12
|
-
"content": "<p>I talk to upset customers everyday now. This is overwhelming at times when all you are hearing or seeing from customers is yelling or frustration.</p>"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "1619b2fe-ce09-4a78-8c47-1428995c7c1c",
|
|
4
|
-
"alignment": "center",
|
|
5
|
-
"title": "Why Us",
|
|
6
|
-
"headline": "We're different than all the rest.",
|
|
7
|
-
"content": "<p>At our digital agency, we believe that standing out in the crowded digital landscape requires a unique approach. <a href=\"/team\" target=\"_self\">That's why we take a holistic approach</a> to digital marketing, focusing on building a strong brand identity and developing strategies that are tailored to our clients' specific needs.</p>\n<p><a class=\"btn btn-primary btn-md\" href=\"/contact-us\" target=\"_self\">Test Button</a></p>\n<h1>H1</h1>\n<blockquote>\n<p>Our team of experts brings a diverse range of skills and experiences to the table, including web design, content creation, SEO, social media marketing, and more. We're not just interested in getting quick results; we're invested in helping our clients build sustainable, long-term success.</p>\n</blockquote>\n<ol>\n<li>Number 1</li>\n<li>Number 2 (Who does number 2 work for)</li>\n<li>Number 3</li>\n</ol>\n<ul>\n<li>Item 1</li>\n<li>Item 2</li>\n<li>Item 3</li>\n</ul>\n<h2>H2</h2>\n<p>Some text</p>\n<hr>\n<h3>H3</h3>\n<p>Some text</p>\n<p>From the initial consultation to ongoing support, we're dedicated to providing personalized attention and exceptional service. At our digital agency, we're not just different from the rest - we're better.</p>"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"id": "1a273da2-8d00-4ccc-9109-0da0d0d88dcb",
|
|
11
|
-
"alignment": "center",
|
|
12
|
-
"title": null,
|
|
13
|
-
"headline": "Let's work together",
|
|
14
|
-
"content": "<p>Hi {{ contact.first_name }},</p>\n<p>Thanks for meeting with me the other day. It was nice to have the time to dig in and have a more focused conversation. I have outlined three options of increasing complexity for the project. The options are incremental, meaning that each includes and builds upon the previous options. This will allow you to pick a level that suits the urgency and budget.</p>\n<p>Please note that this is not an estimate, it is a quote. The price you agree to is exactly how much you’ll pay. If I have underestimated how long it will take me to do the work, that’s my problem, not yours.</p>\n<p>Because of this, I’m strict about what’s included and what’s not. Please do not assume anything. If there is anything you want included that you don’t see explicitly listed, we’ll need to talk about it and I’ll send a revised quote. When you get a chance, please review and let me know if you have any questions or comments. I’ll touch base with you on DATE THAT IS THREE TO FOUR BUSINESS DAYS IN THE FUTURE if I haven’t heard back by then.</p>\n<p>- Bryant Gillespie</p>"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"id": "2387edcd-e6ab-451c-befa-30ab247b2290",
|
|
18
|
-
"alignment": "center",
|
|
19
|
-
"title": null,
|
|
20
|
-
"headline": "Rich Text Block",
|
|
21
|
-
"content": "<p><strong>Here's a few sentences.</strong></p>"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"id": "62517520-a3e0-4655-bd92-2d45293eb0c6",
|
|
25
|
-
"alignment": "left",
|
|
26
|
-
"title": null,
|
|
27
|
-
"headline": "How We Can Do This",
|
|
28
|
-
"content": "<p>Given your current setup, we propose an innovative solution leveraging Directus, an open-source headless content management system, to streamline your web development process. This approach involves integrating Directus with your existing system, offering a more efficient and flexible way to manage your web content and applications.</p>\n<p>Benefits:</p>\n<ol>\n<li><strong>Enhanced Flexibility:</strong> Directus provides a more adaptable and customizable content management framework compared to traditional systems.</li>\n<li><strong>Improved Content Control:</strong> With Directus, you gain more control over how your content is structured and delivered across different platforms.</li>\n<li><strong>Cost-Effective Solution:</strong> Utilizing Directus significantly reduces the need for extensive custom development, thereby lowering overall project costs.</li>\n</ol>\n<p>Drawbacks:</p>\n<ol>\n<li><strong>Dependency on Directus Framework:</strong> Your system will rely on the Directus framework, which might require additional learning for your team.</li>\n<li><strong>Limited Third-Party Integrations:</strong> While Directus is versatile, it may not have as many out-of-the-box integrations as some other platforms.</li>\n</ol>\n<p>Timeline and Deliverables:</p>\n<ol>\n<li><strong>Planning and System Assessment (2 days):</strong> Evaluating your current system and planning the Directus integration.</li>\n<li><strong>Directus Setup and Configuration (3 days):</strong> Installing and configuring Directus to fit your specific needs.</li>\n<li><strong>Data Migration and Integration (4 days):</strong> Migrating existing data and ensuring seamless integration with your systems.</li>\n<li><strong>Custom Development (if required) (3 days):</strong> Additional customization to meet specific requirements.</li>\n<li><strong>Testing and Quality Assurance (3 days):</strong> Ensuring the integration works flawlessly across all platforms.</li>\n<li><strong>Training and Documentation (2 days):</strong> Providing training sessions for your team and comprehensive documentation.</li>\n<li><strong>Launch and Post-Launch Support (2 days):</strong> Going live and providing immediate support to address any issues.</li>\n</ol>\n<p>Cost:</p>\n<ul>\n<li><strong>Initial Setup and Integration:</strong> $6,500 one time.</li>\n<li><strong>Annual Maintenance and Support:</strong> $1,200, covering updates and ongoing support.</li>\n</ul>\n<p>This solution offers a robust, flexible approach to managing your web content and applications, aligning with modern web development practices while ensuring cost-effectiveness and scalability.</p>"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"id": "6c5df396-be52-4b1c-a144-d55b229e5a34",
|
|
32
|
-
"alignment": "center",
|
|
33
|
-
"title": null,
|
|
34
|
-
"headline": "The Benefits of Rabbits",
|
|
35
|
-
"content": "<p>Rabbits are a great source of environmental benefit. They help to keep grasslands and other ecosystems in check. Rabbits are herbivores, meaning they eat only plants, which helps to keep vegetation in balance. Additionally, rabbits are crucial to the food chain, providing sustenance for predators in their environment.</p>\n<p>Rabbits also help to improve the quality of soil by digging burrows and depositing their waste in them. This helps to aerate the soil, improving its quality and allowing for better plant growth. Additionally, the waste from rabbits is a rich source of nutrients for plants and other animals in the area. This helps to keep the soil healthy and support the overall ecosystem.</p>"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"id": "8f714990-cb45-4c6c-afa6-a49615768a4f",
|
|
39
|
-
"alignment": "center",
|
|
40
|
-
"title": null,
|
|
41
|
-
"headline": "About Us",
|
|
42
|
-
"content": "<p>Our website, \"Bunny Lovers,\" is dedicated to all things rabbit! Our goal is to provide comprehensive information and resources for rabbit owners and enthusiasts alike. We believe that rabbits make wonderful pets and we want to help people give their furry friends the best life possible.</p>\n<p>The team behind Bunny Lovers is made up of rabbit owners and experts who have years of experience caring for these cute and cuddly creatures. We share a passion for rabbits and their well-being, and we have combined our knowledge to create a one-stop shop for everything rabbit-related. From breed information to health advice, we aim to provide you with the most up-to-date and accurate information available.</p>\n<p>In addition to our informative articles, we also offer a lively and supportive community where rabbit owners can connect and share their experiences. Whether you are a seasoned rabbit owner or just starting out, you are sure to find the information and support you need on our site. So, come join us and let's celebrate these amazing animals together!</p>"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"id": "9d65df9c-307f-4049-bc21-0c3a77178d91",
|
|
46
|
-
"alignment": "center",
|
|
47
|
-
"title": "Privacy Policy",
|
|
48
|
-
"headline": "We <em>protect our clients</em> like our own families",
|
|
49
|
-
"content": "<p>Thank you for considering our privacy policy at XYZ Development Agency. We take your privacy very seriously and want you to know exactly how we collect, use, share, and protect your information when you visit our website or use our services.</p>\n<h2>Information We Collect</h2>\n<p>We collect personal information such as your name, email address, phone number, and company name when you fill out a contact form or sign up for our newsletter. We also collect non-personal information such as your IP address, browser type, and operating system when you visit our website.</p>\n<h2>How We Use Your Information</h2>\n<p>We use your personal information to respond to your inquiries, send you newsletters, and provide you with our services. We use non-personal information to analyze website traffic and improve our website's performance.</p>\n<h2>Information Sharing</h2>\n<p>We do not sell or rent your personal information to third parties. However, we may share your personal information with trusted third-party service providers who assist us in providing our services to you. We may also share your information when required by law or to protect our rights and property.</p>\n<h2>Security</h2>\n<p>We take appropriate measures to protect your personal information from unauthorized access, disclosure, or misuse. We use secure servers and encryption technologies to ensure the confidentiality and integrity of your information.</p>\n<h2>Cookies and Tracking Technologies</h2>\n<p>We use cookies and other tracking technologies to collect non-personal information about your website usage. You can disable cookies through your browser settings, but this may limit your access to certain features of our website.</p>\n<h2>Links to Third-Party Websites</h2>\n<p>Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of those websites. We encourage you to review the privacy policies of those websites before providing any personal information.</p>\n<h2>Changes to Our Privacy Policy</h2>\n<p>We may update our privacy policy from time to time. We will notify you of any changes by posting the new policy on our website. Your continued use of our website or services after any changes to our privacy policy means that you agree to the updated policy.</p>\n<h2>Contact Us</h2>\n<p>If you have any questions or concerns about our privacy policy, please contact us at privacy@xyzdevelopment.com.</p>\n<p>Thank you for trusting XYZ Development Agency with your personal information.</p>"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"id": "b0c8cec2-acc5-46ad-9044-8a6602000c3e",
|
|
53
|
-
"alignment": "center",
|
|
54
|
-
"title": null,
|
|
55
|
-
"headline": "Next Steps",
|
|
56
|
-
"content": "<p class=\"project-block__block-element\">Upon agreement on the proposal details, we'll commence with the project kick-off. This phase will involve an in-depth discussion of your specific needs, followed by the development of a detailed project plan. We believe in maintaining transparency and open communication throughout the project to ensure all your expectations are met.</p>\n<p class=\"project-block__block-element\">We look forward to an opportunity to work together and deliver a software solution that aligns with your vision and drives your business growth. Thank you for considering our proposal.</p>"
|
|
57
|
-
}
|
|
58
|
-
]
|