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,170 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"pages_id": "ac35a4c6-ca73-48c4-9c02-37a50d4bc736",
|
|
4
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
5
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
6
|
-
"id": "b27fd70c-68f9-4b76-99b9-aecb66b53207",
|
|
7
|
-
"date_created": "2023-10-20T17:59:47.002Z",
|
|
8
|
-
"date_updated": "2023-10-20T18:05:52.251Z",
|
|
9
|
-
"collection": "block_hero",
|
|
10
|
-
"item": "8ece685c-e903-443b-b29d-b36491709743",
|
|
11
|
-
"sort": 1,
|
|
12
|
-
"hide_block": false
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
16
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
17
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
18
|
-
"id": "4454e46c-55c1-4b94-bf89-246806dedfe9",
|
|
19
|
-
"date_created": "2023-09-20T16:52:58.263Z",
|
|
20
|
-
"date_updated": "2023-10-19T16:23:00.108Z",
|
|
21
|
-
"collection": "block_hero",
|
|
22
|
-
"item": "6aa654f5-b55f-4436-a35c-1f989f26268a",
|
|
23
|
-
"sort": 1,
|
|
24
|
-
"hide_block": false
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
28
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
29
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
30
|
-
"id": "9d7bc6b3-3f19-4c47-b60b-73ba7c3690f8",
|
|
31
|
-
"date_created": "2023-09-20T03:41:10.321Z",
|
|
32
|
-
"date_updated": "2023-10-06T13:27:15.019Z",
|
|
33
|
-
"collection": "block_richtext",
|
|
34
|
-
"item": "1619b2fe-ce09-4a78-8c47-1428995c7c1c",
|
|
35
|
-
"sort": 2,
|
|
36
|
-
"hide_block": false
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
40
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
41
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
42
|
-
"id": "03feadbd-11cc-4d67-b096-3f025881ccb0",
|
|
43
|
-
"date_created": "2023-09-20T03:41:10.307Z",
|
|
44
|
-
"date_updated": "2023-10-06T13:27:15.043Z",
|
|
45
|
-
"collection": "block_quote",
|
|
46
|
-
"item": "45043f8a-7647-417b-ba77-65d09a93bcc1",
|
|
47
|
-
"sort": 3,
|
|
48
|
-
"hide_block": false
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
52
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
53
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
54
|
-
"id": "283267c2-b3eb-4b08-ab0e-6ded2a57457e",
|
|
55
|
-
"date_created": "2023-09-20T03:41:10.261Z",
|
|
56
|
-
"date_updated": "2023-10-06T13:27:15.072Z",
|
|
57
|
-
"collection": "block_faqs",
|
|
58
|
-
"item": "ec44961c-fcda-4ce7-ad9a-ec63413bffd1",
|
|
59
|
-
"sort": 4,
|
|
60
|
-
"hide_block": false
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
64
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
65
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
66
|
-
"id": "c8a1c175-7c6e-49a9-9a6e-a6cfaa2de093",
|
|
67
|
-
"date_created": "2023-09-21T00:02:31.322Z",
|
|
68
|
-
"date_updated": "2023-10-06T13:27:15.092Z",
|
|
69
|
-
"collection": "block_video",
|
|
70
|
-
"item": "1833f0ec-bc01-4b3d-809b-3043def64d9f",
|
|
71
|
-
"sort": 5,
|
|
72
|
-
"hide_block": false
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
76
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
77
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
78
|
-
"id": "0b1ac09c-c14a-449e-be79-c4cc79eb5dc4",
|
|
79
|
-
"date_created": "2023-09-20T03:41:10.332Z",
|
|
80
|
-
"date_updated": "2023-10-06T13:27:15.113Z",
|
|
81
|
-
"collection": "block_steps",
|
|
82
|
-
"item": "a163efd7-1037-4261-939d-28a08122c426",
|
|
83
|
-
"sort": 6,
|
|
84
|
-
"hide_block": false
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
88
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
89
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
90
|
-
"id": "1d0efb3b-35c1-4afc-afd8-4c47e2f7b38f",
|
|
91
|
-
"date_created": "2023-09-20T03:41:10.285Z",
|
|
92
|
-
"date_updated": "2023-10-06T13:27:15.140Z",
|
|
93
|
-
"collection": "block_gallery",
|
|
94
|
-
"item": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
95
|
-
"sort": 7,
|
|
96
|
-
"hide_block": false
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
100
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
101
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
102
|
-
"id": "f809ea2e-bbd8-4a18-a78a-36f62556b1ac",
|
|
103
|
-
"date_created": "2023-09-20T03:41:10.294Z",
|
|
104
|
-
"date_updated": "2023-10-20T04:53:48.362Z",
|
|
105
|
-
"collection": "block_logocloud",
|
|
106
|
-
"item": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
107
|
-
"sort": 8,
|
|
108
|
-
"hide_block": false
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
112
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
113
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
114
|
-
"id": "1f5ef341-d8b6-4e4a-bd21-fae42e3f3f90",
|
|
115
|
-
"date_created": "2023-09-20T03:41:10.275Z",
|
|
116
|
-
"date_updated": "2023-10-06T13:27:15.178Z",
|
|
117
|
-
"collection": "block_form",
|
|
118
|
-
"item": "210e0adc-37ab-4c3a-831b-339aa67fd8db",
|
|
119
|
-
"sort": 9,
|
|
120
|
-
"hide_block": false
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
124
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
125
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
126
|
-
"id": "1de068d8-b7b1-4c2c-a8ba-bca5e2f6cd67",
|
|
127
|
-
"date_created": "2023-09-20T03:41:10.347Z",
|
|
128
|
-
"date_updated": "2023-10-06T13:27:15.197Z",
|
|
129
|
-
"collection": "block_team",
|
|
130
|
-
"item": "aa94c8db-bfc1-4681-8ddc-818166556e79",
|
|
131
|
-
"sort": 10,
|
|
132
|
-
"hide_block": false
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
136
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
137
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
138
|
-
"id": "15ed67e4-067e-41e6-8b47-9f645ae76540",
|
|
139
|
-
"date_created": "2023-09-20T03:41:10.358Z",
|
|
140
|
-
"date_updated": "2023-10-06T13:27:15.221Z",
|
|
141
|
-
"collection": "block_testimonials",
|
|
142
|
-
"item": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
|
|
143
|
-
"sort": 11,
|
|
144
|
-
"hide_block": false
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
148
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
149
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
150
|
-
"id": "59a904f2-96b0-47a1-b302-58930b4c25df",
|
|
151
|
-
"date_created": "2023-09-20T16:53:23.712Z",
|
|
152
|
-
"date_updated": "2023-10-06T13:27:15.240Z",
|
|
153
|
-
"collection": "block_columns",
|
|
154
|
-
"item": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
155
|
-
"sort": 12,
|
|
156
|
-
"hide_block": false
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"pages_id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
160
|
-
"user_updated": "1a3e5ba4-c118-4607-9918-77d36b74a9a3",
|
|
161
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
162
|
-
"id": "61a903d0-3154-4876-8f4b-f2eaf83cb572",
|
|
163
|
-
"date_created": "2023-09-20T16:53:23.667Z",
|
|
164
|
-
"date_updated": "2024-01-07T16:37:54.330Z",
|
|
165
|
-
"collection": "block_cta",
|
|
166
|
-
"item": "cf12eadb-8085-4556-949c-969d1c5f90d0",
|
|
167
|
-
"sort": 13,
|
|
168
|
-
"hide_block": false
|
|
169
|
-
}
|
|
170
|
-
]
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"seo": "32f73e14-7391-44bc-8575-e3329ba23b62",
|
|
4
|
-
"id": "17de1257-ddd3-4aac-825a-dae57f1fabb1",
|
|
5
|
-
"date_created": "2023-09-20T03:14:05",
|
|
6
|
-
"date_updated": "2024-01-07T16:37:54",
|
|
7
|
-
"permalink": "/",
|
|
8
|
-
"user_updated": "1a3e5ba4-c118-4607-9918-77d36b74a9a3",
|
|
9
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
10
|
-
"title": "Home",
|
|
11
|
-
"status": "published",
|
|
12
|
-
"sort": 2,
|
|
13
|
-
"blocks": [
|
|
14
|
-
"4454e46c-55c1-4b94-bf89-246806dedfe9",
|
|
15
|
-
"9d7bc6b3-3f19-4c47-b60b-73ba7c3690f8",
|
|
16
|
-
"03feadbd-11cc-4d67-b096-3f025881ccb0",
|
|
17
|
-
"283267c2-b3eb-4b08-ab0e-6ded2a57457e",
|
|
18
|
-
"c8a1c175-7c6e-49a9-9a6e-a6cfaa2de093",
|
|
19
|
-
"0b1ac09c-c14a-449e-be79-c4cc79eb5dc4",
|
|
20
|
-
"1d0efb3b-35c1-4afc-afd8-4c47e2f7b38f",
|
|
21
|
-
"f809ea2e-bbd8-4a18-a78a-36f62556b1ac",
|
|
22
|
-
"1f5ef341-d8b6-4e4a-bd21-fae42e3f3f90",
|
|
23
|
-
"1de068d8-b7b1-4c2c-a8ba-bca5e2f6cd67",
|
|
24
|
-
"15ed67e4-067e-41e6-8b47-9f645ae76540",
|
|
25
|
-
"59a904f2-96b0-47a1-b302-58930b4c25df",
|
|
26
|
-
"61a903d0-3154-4876-8f4b-f2eaf83cb572"
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"seo": null,
|
|
31
|
-
"id": "b344d10e-4cc8-4ce6-9f09-a5770bfb1ae6",
|
|
32
|
-
"date_created": "2023-09-21T03:02:02",
|
|
33
|
-
"date_updated": "2023-10-20T18:07:25",
|
|
34
|
-
"permalink": "/manifesto",
|
|
35
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
36
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
37
|
-
"title": "Manifesto",
|
|
38
|
-
"status": "published",
|
|
39
|
-
"sort": 3,
|
|
40
|
-
"blocks": []
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"seo": null,
|
|
44
|
-
"id": "7ecce4f4-8976-4b13-a85c-a93f1c105e4f",
|
|
45
|
-
"date_created": "2023-09-21T03:02:02",
|
|
46
|
-
"date_updated": "2023-10-20T06:29:36",
|
|
47
|
-
"permalink": "/team",
|
|
48
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
49
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
50
|
-
"title": "Team",
|
|
51
|
-
"status": "published",
|
|
52
|
-
"sort": 4,
|
|
53
|
-
"blocks": []
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"seo": null,
|
|
57
|
-
"id": "f2ceb853-f407-458e-aafa-1412ae2c50ae",
|
|
58
|
-
"date_created": "2023-09-21T03:02:02",
|
|
59
|
-
"date_updated": "2023-10-05T12:40:39",
|
|
60
|
-
"permalink": "/privacy-policy",
|
|
61
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
62
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
63
|
-
"title": "Privacy Policy",
|
|
64
|
-
"status": "published",
|
|
65
|
-
"sort": 5,
|
|
66
|
-
"blocks": []
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"seo": null,
|
|
70
|
-
"id": "0945b7d7-9643-4a90-948d-a5d6659014e0",
|
|
71
|
-
"date_created": "2023-09-21T03:02:02",
|
|
72
|
-
"date_updated": "2023-10-20T06:29:42",
|
|
73
|
-
"permalink": "/contact-us",
|
|
74
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
75
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
76
|
-
"title": "Contact Us",
|
|
77
|
-
"status": "published",
|
|
78
|
-
"sort": 6,
|
|
79
|
-
"blocks": []
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"seo": null,
|
|
83
|
-
"id": "ac35a4c6-ca73-48c4-9c02-37a50d4bc736",
|
|
84
|
-
"date_created": "2023-10-05T12:48:12",
|
|
85
|
-
"date_updated": "2023-10-20T18:05:52",
|
|
86
|
-
"permalink": "/services",
|
|
87
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
88
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
89
|
-
"title": "Services",
|
|
90
|
-
"status": "published",
|
|
91
|
-
"sort": null,
|
|
92
|
-
"blocks": [
|
|
93
|
-
"b27fd70c-68f9-4b76-99b9-aecb66b53207"
|
|
94
|
-
]
|
|
95
|
-
}
|
|
96
|
-
]
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"directus_files_id": "ac905071-0643-4337-8f53-48ed45b1ccf2",
|
|
4
|
-
"posts_id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
5
|
-
"id": "1109777a-b63f-473e-aa1f-dfa643ed9a9c",
|
|
6
|
-
"sort": 1
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"directus_files_id": "6ff389c5-3ecb-4219-8f72-f10326aab421",
|
|
10
|
-
"posts_id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
11
|
-
"id": "4849638f-c40f-4fa1-8dba-d1501e65c193",
|
|
12
|
-
"sort": 5
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"directus_files_id": "ce0b845f-f8d8-4856-b0af-1df4e3a838cc",
|
|
16
|
-
"posts_id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
17
|
-
"id": "a5a104b3-60aa-4956-8bf9-fb47acdfb2ba",
|
|
18
|
-
"sort": 4
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"directus_files_id": "88b95737-7ff4-4a09-8523-362d42caa9f9",
|
|
22
|
-
"posts_id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
23
|
-
"id": "c6898826-81d8-4e01-a169-dfacee56e352",
|
|
24
|
-
"sort": 2
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"directus_files_id": "b1a3fd77-8e62-4678-9d44-333a30eec13b",
|
|
28
|
-
"posts_id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
29
|
-
"id": "eafbf929-3dd4-46fa-b953-621d12390793",
|
|
30
|
-
"sort": 3
|
|
31
|
-
}
|
|
32
|
-
]
|
|
@@ -1,235 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"author": "78773c92-7e57-4e58-8198-c840958cedb6",
|
|
4
|
-
"seo": null,
|
|
5
|
-
"image": "3eff7dc2-445a-47c5-9503-3f600ecdb5c6",
|
|
6
|
-
"id": "ba559a1e-5b0c-4932-ab97-b1ab4ca69955",
|
|
7
|
-
"category": "9896a65e-a004-4481-87cf-a07e515a5d82",
|
|
8
|
-
"date_created": "2023-02-08T20:46:11",
|
|
9
|
-
"date_published": "2023-02-01T12:00:00",
|
|
10
|
-
"date_updated": "2023-10-20T16:03:34",
|
|
11
|
-
"video_url": null,
|
|
12
|
-
"type": "blog",
|
|
13
|
-
"cost": null,
|
|
14
|
-
"client": null,
|
|
15
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
16
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
17
|
-
"title": "Why Steampunk Rabbits Are The Future of Work",
|
|
18
|
-
"status": "published",
|
|
19
|
-
"slug": "why-steampunk-rabbits-are-the-future-of-work",
|
|
20
|
-
"built_with": null,
|
|
21
|
-
"content": "<p>Ladies and Gentlemen, it is my great pleasure to introduce you to the future of work. And no, I'm not talking about drones, AI, or even cyborgs. The future of work is none other than the stylish, dapper and oh-so-cool steampunk rabbits!</p>\n<h2>What are Steampunk Rabbits?</h2>\n<p>Yes, you heard it right, steampunk rabbits. These little creatures are not just cute and cuddly, but they are also the epitome of efficiency and innovation. From the gears in their top hats to the clockwork in their tails, steampunk rabbits are revolutionizing the way we work and live.</p>\n<p>So, what makes steampunk rabbits so special? Well, for starters, they never sleep. They work tirelessly around the clock, getting more done in a day than any human ever could. They are also incredibly multi-talented. With their clockwork appendages, they can type, write, assemble, and even paint! All while sipping on a cup of tea and looking fabulous, of course.</p>\n<h2>Benefits of Steampunk Rabbits</h2>\n<p>And the best part? They are never late for work. They have built-in clocks and calendars, ensuring that they are always on time. And forget a sick days and vacations; steampunk rabbits never get sick or need a break. They just keep working and working, providing us with endless hours of productivity.</p>\n<p>But wait, there's more! Steampunk rabbits also bring a touch of whimsy and charm to the workplace. Their Victorian-inspired attire and quirky personalities are sure to brighten up any office. They are the perfect office pets, and they make even the most mundane tasks feel like an adventure.</p>\n<p>So, there you have it folks, steampunk rabbits are the future of work. So, next time you're feeling stressed and overwhelmed with work, just remember, there's a steampunk rabbit out there who's got your back. And if you're lucky, maybe you'll even get to work with one someday.</p>\n<p>In conclusion, let us embrace the future and welcome our new steampunk rabbit overlords with open arms. The future of work has never looked so bright and full of bunnies!</p>",
|
|
22
|
-
"summary": "This post discusses how steampunk rabbits could be the future of work, highlighting their efficiency, multi-talented nature, and ability to bring charm to the workplace.",
|
|
23
|
-
"sort": 1,
|
|
24
|
-
"gallery": []
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"author": "113893f5-1768-4ab0-92eb-bd6ee8236437",
|
|
28
|
-
"seo": null,
|
|
29
|
-
"image": "ac905071-0643-4337-8f53-48ed45b1ccf2",
|
|
30
|
-
"id": "08ffcf49-8d76-4f48-a531-fb16327dffa5",
|
|
31
|
-
"category": "da30c277-650f-421c-b976-c598f898e89e",
|
|
32
|
-
"date_created": "2023-02-08T21:22:42",
|
|
33
|
-
"date_published": "2023-10-18T12:00:00",
|
|
34
|
-
"date_updated": "2023-10-20T15:40:32",
|
|
35
|
-
"video_url": "https://youtu.be/XbS8qdvNAdw",
|
|
36
|
-
"type": "video",
|
|
37
|
-
"cost": null,
|
|
38
|
-
"client": null,
|
|
39
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
40
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
41
|
-
"title": "Where's My Hare",
|
|
42
|
-
"status": "draft",
|
|
43
|
-
"slug": "wheres-my-hare",
|
|
44
|
-
"built_with": null,
|
|
45
|
-
"content": "<p>Tempor ad fugiat qui laborum Lorem excepteur incididunt ea. Aute in cillum commodo tempor eiusmod reprehenderit deserunt. Est nisi reprehenderit labore ea et ullamco consectetur reprehenderit pariatur elit ut culpa ea non. Elit et sit culpa labore incididunt eu nulla commodo cillum cillum aliqua ad. Nisi magna consequat exercitation tempor dolor dolore magna ex velit incididunt ex amet eu sunt fugiat. Labore magna anim commodo sit consequat eiusmod dolore ea laborum fugiat enim incididunt. Proident incididunt ad ullamco fugiat voluptate.</p>\n<p>Tempor ad fugiat qui laborum Lorem excepteur incididunt ea. Aute in cillum commodo tempor eiusmod reprehenderit deserunt. Est nisi reprehenderit labore ea et ullamco consectetur reprehenderit pariatur elit ut culpa ea non. Elit et sit culpa labore incididunt eu nulla commodo cillum cillum aliqua ad. Nisi magna consequat exercitation tempor dolor dolore magna ex velit incididunt ex amet eu sunt fugiat. Labore magna anim commodo sit consequat eiusmod dolore ea laborum fugiat enim incididunt. Proident incididunt ad ullamco fugiat voluptate.</p>\n<p>Tempor ad fugiat qui laborum Lorem excepteur incididunt ea. Aute in cillum commodo tempor eiusmod reprehenderit deserunt. Est nisi reprehenderit labore ea et ullamco consectetur reprehenderit pariatur elit ut culpa ea non. Elit et sit culpa labore incididunt eu nulla commodo cillum cillum aliqua ad. Nisi magna consequat exercitation tempor dolor dolore magna ex velit incididunt ex amet eu sunt fugiat. Labore magna anim commodo sit consequat eiusmod dolore ea laborum fugiat enim incididunt. Proident incididunt ad ullamco fugiat voluptate.</p>",
|
|
46
|
-
"summary": "Quick actionable video on what do to when your rabbit is lost.",
|
|
47
|
-
"sort": 2,
|
|
48
|
-
"gallery": []
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"author": "78ea9b95-41ca-49a4-9990-ba9e4d44a057",
|
|
52
|
-
"seo": null,
|
|
53
|
-
"image": "d4fd6edc-4cc5-48c1-8bc7-e646924bbdca",
|
|
54
|
-
"id": "c96b64b4-9567-46f6-8eb5-ac2f37c4918d",
|
|
55
|
-
"category": "06da3e1e-9af6-4b27-a248-60a58dc229d2",
|
|
56
|
-
"date_created": "2023-02-08T21:11:34",
|
|
57
|
-
"date_published": null,
|
|
58
|
-
"date_updated": "2023-10-20T16:38:21",
|
|
59
|
-
"video_url": null,
|
|
60
|
-
"type": "blog",
|
|
61
|
-
"cost": null,
|
|
62
|
-
"client": null,
|
|
63
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
64
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
65
|
-
"title": "Rabbit Grooming: Essential Tips for Keeping Your Bunny Looking and Feeling Their Best",
|
|
66
|
-
"status": "in_review",
|
|
67
|
-
"slug": "rabbit-grooming-essential-tips-for-keeping-your-bunny-looking-and-feeling-their-best",
|
|
68
|
-
"built_with": null,
|
|
69
|
-
"content": "<p>Rabbit grooming is an essential aspect of pet care that ensures the overall health, happiness, and well-being of your furry friend. Regular grooming not only keeps your bunny looking their best but also helps to prevent health issues, strengthens the bond between you and your pet, and maintains a clean environment. In this blog post, we'll explore some essential rabbit grooming tips and techniques to help you keep your bunny looking and feeling their best.</p>\n<h2>1. Brushing</h2>\n<p>One of the most critical aspects of rabbit grooming is regular brushing. Rabbits have a thick, soft coat that can easily become matted, tangled, or accumulate excess hair. This is especially important during the shedding season when rabbits lose their fur.</p>\n<p>To brush your rabbit, use a soft-bristle brush or a comb specifically designed for rabbits. Gently brush in the direction of the fur growth, taking extra care around sensitive areas like the face, ears, and belly. Brushing should be done at least once a week, or more frequently during shedding season.</p>\n<h2>2. Nail Trimming</h2>\n<p>Just like humans, rabbits need their nails trimmed regularly to prevent overgrowth and potential injury. Rabbit nails can become sharp and curl, making it difficult for them to move and causing discomfort.</p>\n<p>To trim your rabbit's nails, use a pair of small animal nail clippers. Hold your rabbit securely, but gently, and expose the nail by gently pressing on the surrounding fur. Clip the nail at a 45-degree angle, avoiding the quick, the pink part of the nail containing blood vessels and nerves. If you accidentally cut the quick, apply styptic powder or cornstarch to stop the bleeding. Trim your rabbit's nails every 4-6 weeks or as needed.</p>\n<h2>3. Ear Cleaning</h2>\n<p>Rabbits are prone to ear infections, which can lead to severe complications if left untreated. Regular ear cleaning helps to prevent infections and ensure that your rabbit's ears remain healthy.</p>\n<p>To clean your rabbit's ears, use a soft, damp cloth or cotton ball moistened with warm water. Gently wipe the outer part of the ear, avoiding the ear canal. Never insert anything into the ear canal, as this can cause damage or push debris further in. Clean your rabbit's ears every 2-4 weeks or as needed.</p>\n<h2>4. Dental Care</h2>\n<p>Rabbits have continuously growing teeth that need to be worn down to prevent dental problems. Providing your rabbit with hay, wooden chew toys, and other materials to gnaw on will help keep their teeth in check.</p>\n<p>Monitor your rabbit's teeth regularly to ensure they're not becoming too long or misaligned. If you notice any issues, consult with a veterinarian experienced in rabbit care, as they may need to trim or file the teeth.</p>\n<h2>5. Bathing</h2>\n<p>Unlike cats and dogs, rabbits do not require frequent baths. In fact, bathing your rabbit can cause stress and lead to health issues. Instead, spot clean your rabbit using a damp cloth or unscented baby wipes to remove any dirt or debris. If your rabbit becomes soiled and requires a more thorough cleaning, consult with a veterinarian for guidance.</p>\n<p>In conclusion, maintaining a regular grooming routine is essential for your rabbit's overall health and well-being. By implementing these tips and techniques, you can ensure that your bunny stays clean, comfortable, and happy. Remember to always handle your rabbit gently and with care during grooming sessions to help build trust and strengthen the bond between you and your pet.</p>",
|
|
70
|
-
"summary": "Rabbit grooming, encompassing brushing, nail trimming, ear cleaning, dental care, and spot cleaning, is vital for your bunny's health, appearance, and well-being.",
|
|
71
|
-
"sort": 3,
|
|
72
|
-
"gallery": []
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"author": "78773c92-7e57-4e58-8198-c840958cedb6",
|
|
76
|
-
"seo": null,
|
|
77
|
-
"image": "68103296-6634-4d66-918a-04b09afe6621",
|
|
78
|
-
"id": "00e918d9-0022-4c4d-bb3b-c71622d28149",
|
|
79
|
-
"category": "06da3e1e-9af6-4b27-a248-60a58dc229d2",
|
|
80
|
-
"date_created": "2023-02-08T21:11:55",
|
|
81
|
-
"date_published": null,
|
|
82
|
-
"date_updated": "2023-10-20T14:35:14",
|
|
83
|
-
"video_url": null,
|
|
84
|
-
"type": "blog",
|
|
85
|
-
"cost": null,
|
|
86
|
-
"client": null,
|
|
87
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
88
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
89
|
-
"title": "10 Fun and Creative DIY Rabbit Toys You Can Make at Home",
|
|
90
|
-
"status": "scheduled",
|
|
91
|
-
"slug": "10-fun-and-creative-diy-rabbit-toys-you-can-make-at-home",
|
|
92
|
-
"built_with": null,
|
|
93
|
-
"content": "<p>Rabbits are intelligent, social creatures that require mental and physical stimulation to stay happy and healthy. Providing your furry friends with a variety of toys will not only keep them entertained but also help prevent destructive behaviors. In this blog post, we will explore 10 fun and creative DIY rabbit toys that you can make at home using inexpensive materials.</p>\n<h2>1. Cardboard Castle</h2>\n<p>Transform an old cardboard box into a rabbit’s dream playground! Cut out windows and doors, add a few cardboard ramps, and create multiple levels for your rabbit to explore. Ensure the edges are smooth and safe, and watch as your bunny hops around, investigating their new fortress.</p>\n<h2>2. Toilet Paper Roll Treat Dispenser</h2>\n<p>A simple yet effective DIY toy, the toilet paper roll treat dispenser will keep your rabbit entertained for hours. Cut small holes in a toilet paper roll and stuff it with hay and treats. As your rabbit nudges and chews the roll, they'll be rewarded with their favorite snacks.</p>\n<h2>3. Dangling Chew Toys</h2>\n<p>Create a hanging toy for your rabbit by stringing together colorful wooden beads and untreated wood blocks. Attach the string to a metal clip or carabiner, then hook it to the side of your rabbit’s cage or playpen. Your rabbit will love tugging on and chewing the hanging toy.</p>\n<h2>4. Sisal Rope Ball</h2>\n<p>A sisal rope ball is an excellent toy to keep your rabbit entertained and promote healthy teeth. To make one, simply wrap sisal rope around a small plastic or rubber ball, ensuring you completely cover it. Secure the ends with a knot, and your rabbit will have a blast tossing and chewing the rope ball.</p>\n<h2>5. Stuffed Sock Toy</h2>\n<p>Take an old, clean sock, and stuff it with hay or shredded paper. Tie a knot at the open end, and you've got an easy DIY rabbit toy. Your bunny will enjoy tossing, kicking, and cuddling their new soft friend.</p>\n<h2>6. Paper Bag Burrow</h2>\n<p>Rabbits love burrowing, and a simple paper bag can provide endless entertainment. Crumple a large paper bag, then fill it with hay or shredded paper. Hide treats inside for added fun, and watch as your rabbit digs and burrows their way through their new hiding spot.</p>\n<h2>7. PVC Pipe Maze</h2>\n<p>Create a custom maze for your rabbit using PVC pipes and connectors. Cut the pipes into various lengths, then connect them using elbow and T-shaped connectors to create a fun, engaging course. Be sure to use non-toxic, rabbit-safe PVC materials and avoid any sharp edges.</p>\n<h2>8. Tug-of-War Toy</h2>\n<p>Rabbits enjoy playing tug-of-war, and you can create a simple toy using an old towel or fleece material. Cut the fabric into long strips, then braid or knot them together. Your rabbit will love tugging, pulling, and chewing on their new interactive toy.</p>\n<h2>9. Woven Grass Mat Hideaway</h2>\n<p>Purchase a woven grass mat (made from natural, untreated materials) and transform it into a cozy hideaway for your rabbit. Simply fold the mat in half and secure the sides with twine or cable ties. Your rabbit will enjoy snuggling inside and chewing on the grass fibers.</p>\n<h2>10. DIY Digging Box</h2>\n<p>A digging box is perfect for rabbits that love to dig and forage. Fill a shallow plastic storage container with child-safe play sand or soil. Bury treats and toys in the sand, and let your rabbit enjoy digging and discovering their hidden treasures.</p>\n<p>With these 10 fun and creative DIY rabbit toys, you can easily provide your furry friend with hours of entertainment while promoting healthy mental and physical stimulation.</p>",
|
|
94
|
-
"summary": "Rabbits are intelligent, social creatures that require mental and physical stimulation to stay happy and healthy. ",
|
|
95
|
-
"sort": 4,
|
|
96
|
-
"gallery": []
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"author": "78773c92-7e57-4e58-8198-c840958cedb6",
|
|
100
|
-
"seo": null,
|
|
101
|
-
"image": "7775c53a-6c2c-453d-8c22-8b5445121d10",
|
|
102
|
-
"id": "ddf1003f-6b9a-460c-83fd-d985d6defbd6",
|
|
103
|
-
"category": "da30c277-650f-421c-b976-c598f898e89e",
|
|
104
|
-
"date_created": "2023-02-08T20:46:26",
|
|
105
|
-
"date_published": "2023-01-30T12:00:00",
|
|
106
|
-
"date_updated": "2023-10-20T16:03:54",
|
|
107
|
-
"video_url": null,
|
|
108
|
-
"type": "blog",
|
|
109
|
-
"cost": null,
|
|
110
|
-
"client": null,
|
|
111
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
112
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
113
|
-
"title": "How To Become A Very Productive Rabbit",
|
|
114
|
-
"status": "published",
|
|
115
|
-
"slug": "how-to-become-a-very-productive-rabbit",
|
|
116
|
-
"built_with": null,
|
|
117
|
-
"content": "<p>Rabbits are known for their fast-paced and productive lifestyle. Their ability to multitask and work efficiently makes them a great source of inspiration for anyone looking to boost their productivity levels. In this blog post, we will look at some simple tips and tricks that you can adopt to become a very productive rabbit.</p>\n<p><a href=\"https://directus.io\" target=\"_blank\" rel=\"noopener\">Test external link</a></p>\n<p><a href=\"/about\" target=\"_self\">Test internal link</a></p>\n<h2>Plan your day in advance</h2>\n<p>Planning your day is the first step to becoming a productive rabbit. Make a list of tasks you need to complete, prioritize them and allocate enough time for each. This will help you to stay focused and avoid procrastination.</p>\n<h2>Wake up early</h2>\n<p>Rabbits are early birds, and for good reason. Waking up early will give you a head start on your day, allowing you to tackle your most important tasks when you are most alert and focused.</p>\n<h2>Stay hydrated and nourished</h2>\n<p>Drinking plenty of water and eating a healthy and balanced diet is crucial for maintaining energy levels and concentration throughout the day. Just like rabbits, you should take regular breaks to recharge and refuel.</p>\n<h2>Practice mindfulness and take breaks</h2>\n<p>Rabbits know the importance of taking breaks to refresh their mind and recharge their batteries. Regular breaks can help you avoid burnout and increase your overall productivity. Try incorporating mindfulness practices like meditation or deep breathing into your daily routine.</p>\n<h2>Stay organized</h2>\n<p>An organized work environment can help you work more efficiently and increase your productivity levels. Keep your workspace tidy, and use tools like calendars, to-do lists, and filing systems to keep track of your tasks and deadlines.</p>\n<h2>Surround yourself with positive people</h2>\n<p>Surrounding yourself with positive and supportive people can help to boost your motivation and productivity levels. Seek out coworkers and friends who share your goals and are supportive of your efforts to become more productive.</p>",
|
|
118
|
-
"summary": "In this blog post, we will look at some simple tips and tricks that you can adopt to become a very productive rabbit.",
|
|
119
|
-
"sort": 5,
|
|
120
|
-
"gallery": []
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"author": "74705463-e6df-469f-85b5-d9e4b63989af",
|
|
124
|
-
"seo": null,
|
|
125
|
-
"image": "8f748634-d77b-4985-b27e-7e1f3559881a",
|
|
126
|
-
"id": "f7845a69-edcb-4163-a2a9-fb82b64475c5",
|
|
127
|
-
"category": "9896a65e-a004-4481-87cf-a07e515a5d82",
|
|
128
|
-
"date_created": "2023-02-08T20:51:33",
|
|
129
|
-
"date_published": "2023-03-28T12:00:00",
|
|
130
|
-
"date_updated": "2023-10-20T16:38:38",
|
|
131
|
-
"video_url": null,
|
|
132
|
-
"type": "blog",
|
|
133
|
-
"cost": null,
|
|
134
|
-
"client": null,
|
|
135
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
136
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
137
|
-
"title": "Rabbit Facts That Will Blow Your Mind",
|
|
138
|
-
"status": "published",
|
|
139
|
-
"slug": "rabbit-facts-that-will-blow-your-mind",
|
|
140
|
-
"built_with": null,
|
|
141
|
-
"content": "<p>Rabbits are cute and cuddly animals that have been a staple of our childhoods. But did you know that there's more to these furry creatures than just their adorable appearance? Here are some rabbit facts that will blow your mind!</p>\n<ol>\n<li>\n<p>Rabbits have excellent vision: Rabbits have excellent vision, with eyes located on the sides of their heads, allowing them to see 360 degrees. This helps them to detect predators and keep themselves safe.</p>\n</li>\n<li>\n<p>Rabbits are fast runners: When it comes to running, rabbits are pretty speedy! They can run up to 45 miles per hour, making them one of the fastest animals in the animal kingdom.</p>\n</li>\n<li>\n<p>Rabbits are herbivores: Unlike many other animals, rabbits are strictly herbivores, meaning they only eat plants and vegetation. Their diet consists of leafy greens, hay, and fresh fruits and vegetables.</p>\n</li>\n<li>\n<p>Rabbits have unique teeth: Rabbits have unique teeth that continuously grow throughout their lives. To keep their teeth from becoming too long, they need to chew on hard objects like wood to file them down.</p>\n</li>\n<li>\n<p>Rabbits have powerful hind legs: Rabbits have incredibly powerful hind legs that allow them to make quick and nimble movements. These legs also help them to escape from predators by jumping away at incredible speeds.</p>\n</li>\n<li>\n<p>Rabbits are social creatures: Rabbits are social creatures and are best kept with other rabbits. They love to play and cuddle, and they will often form close bonds with their rabbit friends.</p>\n</li>\n<li>\n<p>Rabbits have a unique reproductive system: Rabbits have a unique reproductive system, with females capable of producing litters of bunnies several times a year. This makes rabbits some of the most productive mammals on the planet.</p>\n</li>\n<li>\n<p>Rabbits have a good memory: Rabbits have a good memory and can remember things for several months. This means that if you take the time to bond with your rabbit, they will remember you and be more likely to come to you for affection.</p>\n</li>\n</ol>\n<p>In conclusion, rabbits are fascinating creatures that have much more to offer than just their cute appearance. From their excellent vision to their powerful hind legs and their unique reproductive system, rabbits are truly amazing animals that are sure to blow your mind!</p>",
|
|
142
|
-
"summary": "These interesting facts about rabbits make them fascinating creatures that are worth learning more about.",
|
|
143
|
-
"sort": 6,
|
|
144
|
-
"gallery": []
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"author": "fbe0f198-c456-4da3-ba31-52952c93825e",
|
|
148
|
-
"seo": "1165d242-6359-479f-9104-ad1d9f669583",
|
|
149
|
-
"image": "1f69c0b8-19b7-49d7-b420-bedad577a079",
|
|
150
|
-
"id": "73e34ae0-4421-424e-9a94-a3550cd3810d",
|
|
151
|
-
"category": "4a62ba82-c48a-465f-a180-a3a8256c93bb",
|
|
152
|
-
"date_created": "2023-10-19T14:39:48",
|
|
153
|
-
"date_published": "2023-09-12T12:00:00",
|
|
154
|
-
"date_updated": "2023-10-20T16:38:29",
|
|
155
|
-
"video_url": null,
|
|
156
|
-
"type": "project",
|
|
157
|
-
"cost": "$100k - $125k",
|
|
158
|
-
"client": "TDSOFT",
|
|
159
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
160
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
161
|
-
"title": "Bettor Signals",
|
|
162
|
-
"status": "published",
|
|
163
|
-
"slug": "bettor-signals",
|
|
164
|
-
"built_with": [
|
|
165
|
-
"Remix",
|
|
166
|
-
"Directus"
|
|
167
|
-
],
|
|
168
|
-
"content": null,
|
|
169
|
-
"summary": "Innovative sports betting platform",
|
|
170
|
-
"sort": null,
|
|
171
|
-
"gallery": []
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"author": "78ea9b95-41ca-49a4-9990-ba9e4d44a057",
|
|
175
|
-
"seo": "4744eed5-ce1d-49a0-bc53-6fb3cfb91ce5",
|
|
176
|
-
"image": "dfa90758-9700-49e4-8fa2-b6cd074811b7",
|
|
177
|
-
"id": "b823edc9-606e-4782-baad-18abf807c3a1",
|
|
178
|
-
"category": "4a62ba82-c48a-465f-a180-a3a8256c93bb",
|
|
179
|
-
"date_created": "2023-10-19T14:39:48",
|
|
180
|
-
"date_published": "2023-10-04T12:00:00",
|
|
181
|
-
"date_updated": "2023-10-20T16:38:21",
|
|
182
|
-
"video_url": null,
|
|
183
|
-
"type": "project",
|
|
184
|
-
"cost": "$10k - $25k",
|
|
185
|
-
"client": "Clockwork Consulting",
|
|
186
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
187
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
188
|
-
"title": "Better Sign Shop",
|
|
189
|
-
"status": "published",
|
|
190
|
-
"slug": "better-sign-shop",
|
|
191
|
-
"built_with": [
|
|
192
|
-
"Directus",
|
|
193
|
-
"Nuxt.js",
|
|
194
|
-
"Vercel",
|
|
195
|
-
"Tailwind CSS"
|
|
196
|
-
],
|
|
197
|
-
"content": "<h2>PROCESSES</h2>\n<p><strong>Organize and document your shop's operating system</strong></p>\n<p>Put an end to the chaos inside your shop with SOPs, employee onboarding, checklists, and internal docs – all the knowledge your team needs right at their fingertips.</p>",
|
|
198
|
-
"summary": "Community platform and LMS for sign and print shop owners",
|
|
199
|
-
"sort": null,
|
|
200
|
-
"gallery": [
|
|
201
|
-
"1109777a-b63f-473e-aa1f-dfa643ed9a9c",
|
|
202
|
-
"c6898826-81d8-4e01-a169-dfacee56e352",
|
|
203
|
-
"eafbf929-3dd4-46fa-b953-621d12390793",
|
|
204
|
-
"a5a104b3-60aa-4956-8bf9-fb47acdfb2ba",
|
|
205
|
-
"4849638f-c40f-4fa1-8dba-d1501e65c193"
|
|
206
|
-
]
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"author": "fbe0f198-c456-4da3-ba31-52952c93825e",
|
|
210
|
-
"seo": null,
|
|
211
|
-
"image": "6789bc72-ab83-40bf-8152-d6f2bafbc2a8",
|
|
212
|
-
"id": "f61a06b5-8913-4152-89b8-04b6cac6c0b9",
|
|
213
|
-
"category": "4a62ba82-c48a-465f-a180-a3a8256c93bb",
|
|
214
|
-
"date_created": "2023-10-19T14:39:48",
|
|
215
|
-
"date_published": "2023-08-09T12:00:00",
|
|
216
|
-
"date_updated": "2023-10-20T16:38:29",
|
|
217
|
-
"video_url": null,
|
|
218
|
-
"type": "project",
|
|
219
|
-
"cost": "$100k+",
|
|
220
|
-
"client": "Rockstar Recruiting",
|
|
221
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
222
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
223
|
-
"title": "Rockstar Jobs",
|
|
224
|
-
"status": "published",
|
|
225
|
-
"slug": "rockstar-jobs",
|
|
226
|
-
"built_with": [
|
|
227
|
-
"Nuxt.js",
|
|
228
|
-
"Directus"
|
|
229
|
-
],
|
|
230
|
-
"content": null,
|
|
231
|
-
"summary": null,
|
|
232
|
-
"sort": null,
|
|
233
|
-
"gallery": []
|
|
234
|
-
}
|
|
235
|
-
]
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
4
|
-
"user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
5
|
-
"id": "812dff34-76f7-41c4-a827-a7d32fb4570b",
|
|
6
|
-
"date_updated": "2023-09-09T02:14:07.152Z",
|
|
7
|
-
"date_created": "2023-03-14T19:37:43.660Z",
|
|
8
|
-
"url_old": "/redirect",
|
|
9
|
-
"url_new": "/",
|
|
10
|
-
"response_code": 301
|
|
11
|
-
}
|
|
12
|
-
]
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "1165d242-6359-479f-9104-ad1d9f669583",
|
|
4
|
-
"title": "Bettor Signals",
|
|
5
|
-
"sitemap_change_frequency": "hourly",
|
|
6
|
-
"canonical_url": null,
|
|
7
|
-
"sitemap_priority": 0.5,
|
|
8
|
-
"meta_description": "Innovative sports betting platform",
|
|
9
|
-
"no_index": false,
|
|
10
|
-
"no_follow": false
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "32f73e14-7391-44bc-8575-e3329ba23b62",
|
|
14
|
-
"title": "Agency OS",
|
|
15
|
-
"sitemap_change_frequency": "hourly",
|
|
16
|
-
"canonical_url": null,
|
|
17
|
-
"sitemap_priority": 0.5,
|
|
18
|
-
"meta_description": "The coolest app this side of the planet.",
|
|
19
|
-
"no_index": false,
|
|
20
|
-
"no_follow": false
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "4744eed5-ce1d-49a0-bc53-6fb3cfb91ce5",
|
|
24
|
-
"title": "Better Sign Shop",
|
|
25
|
-
"sitemap_change_frequency": "hourly",
|
|
26
|
-
"canonical_url": null,
|
|
27
|
-
"sitemap_priority": 0.5,
|
|
28
|
-
"meta_description": "Community platform and LMS for sign and print shop owners",
|
|
29
|
-
"no_index": false,
|
|
30
|
-
"no_follow": false
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": "6fda4d61-a5e8-463b-b97a-505da1ac401d",
|
|
34
|
-
"title": "Services",
|
|
35
|
-
"sitemap_change_frequency": "hourly",
|
|
36
|
-
"canonical_url": null,
|
|
37
|
-
"sitemap_priority": 0.5,
|
|
38
|
-
"meta_description": "Here's the services we offer",
|
|
39
|
-
"no_index": false,
|
|
40
|
-
"no_follow": false
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "8c7e24a4-61fc-4725-8dbe-d74ca65c9950",
|
|
44
|
-
"title": "The Agency OS Team",
|
|
45
|
-
"sitemap_change_frequency": "hourly",
|
|
46
|
-
"canonical_url": null,
|
|
47
|
-
"sitemap_priority": 0.5,
|
|
48
|
-
"meta_description": "Learn more about our amazing team at Agency OS.",
|
|
49
|
-
"no_index": false,
|
|
50
|
-
"no_follow": false
|
|
51
|
-
}
|
|
52
|
-
]
|