Solutions

Revenue Operations OS

Run your full revenue engine in one operating system across sales, marketing, and RevOps workflows.

AI Agents for Revenue Teams

Deploy AI agents that execute revenue tasks across prospecting, qualification, and pipeline operations.

Workflow Automation

Automate repetitive GTM workflows end-to-end with orchestration, triggers, and real-time actions.

Lead Generation Automation

Capture and create more qualified pipeline with automated inbound and outbound lead generation flows.

Outreach Automation

Scale personalized multi-step outreach sequences without losing quality or response relevance.

LinkedIn Account Automation

Automate LinkedIn account activity, outreach cadence, and engagement workflows with control.

CRM Automation

Keep CRM data clean, synchronized, and actionable with automated updates and process automation.

Lead Enrichment

Enrich lead records automatically with firmographic and behavioral data to improve conversion rates.

ICP Scoring

Prioritize the highest-fit accounts with dynamic ICP scoring powered by your GTM data.

Agentic Web Crawling & Research

Research the web with autonomous agents that find, structure, and sync intelligence into your systems.

Sales Pipeline Automation

Move deals faster with automated stage progression, reminders, and pipeline orchestration.

Marketing Automation

Automate campaign execution and performance loops across channels to increase marketing output.

Content Management & Publishing

Plan, generate, and publish content workflows from one system with AI-powered execution.

Operations & Workflow Automation

Automate operational handoffs and internal processes across teams with reliability and control.

Customer Success & Support

Support customers proactively with automated follow-up, success playbooks, and retention workflows.

Solutions

With orbitype you get it all

asd

Cookbook - Sections

Modern webpages are often composed of many different sections.

Things like hero banners, testimonials, FAQs or simple text blocks.

Developers implement these as reusable components with props.

But how do we allow non-technical people to use them in Orbitype?

//

TABLE_OF_CONTENTS

From HTML to JSON

Think of your pages as stack of sections from top to bottom.

Each section is self-contained and configurable with props.

Without a CMS, your templates might look something like this:

<!--home.vue-->

<template>

<SectionHero title="Orbitype" subtitle="A modern CMS"/>

<SectionFigure img=".../foo.png" caption="Lorem ipsum"/>

</template>

To make this dynamic, start by moving the hard-coded content over to Orbitype.

Translate the HTML to an equivalent JSON structure holding the props.

Define the component to render in the special _orbi field.

// home.json

{

"sections": [

{

"title": "Orbitype",

"subtitle": "Lorem ipsum",

"_orbi": { "component": "SectionHero" }

},

{

"img": ".../foo.png",

"caption": "Lorem ipsum",

"_orbi": { "component": "SectionFigure" }

}

]

}

Dynamic templates

By using a glob import and dynamic resolution,

you can create a dynamic AnySection component.

<!--AnySection.vue-->

<script setup lang="ts">

const all = import.meta.glob("~/components/sections/*.vue", { eager: true })

const components = Object.values(all).map((x) => x.default)

defineProps<{ data: Record<string, any> }>()

</script>

<template>

<component

:is=" components.find((x) => x.__name === data._orbi.component)"

v-bind="data"

/>

</template>

Next, replace your hard-coded list of components with a loop of AnySection.

Pass the data from Orbitype as the array to loop over.

<!--home.vue-->

<script setup lang="ts">

const page = await $fetch(import.meta.env.VITE_S3_URL + "/pages/home.json")

</script>

<template>

<AnySection v-for="section of page.sections" :data="section"/>

</template>

And you're done!

You can now add, remove, modify and reorder sections in Orbitype.

All without touching a single line of code.

Learn more