Skip to content

Commit 798d309

Browse files
authored
getting rid of beta banner (#14206)
1 parent 2646c56 commit 798d309

File tree

10 files changed

+6
-30
lines changed

10 files changed

+6
-30
lines changed

contents/docs/workflows/configure-channels.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,10 @@ showStepsToc: true
44
---
55

66
import Tab from "components/Tab"
7-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
87

98
import AddSlackToWorkspace from './_snippets/add-posthog-to-slack-workspace.mdx'
109
import AddSlackToChannel from './_snippets/add-posthog-to-slack-channel.mdx'
1110

12-
<WorkflowsBetaSnippet />
13-
1411
<Steps>
1512

1613
<Step title="Create a new workflows channel" badge="required">

contents/docs/workflows/email-drip-campaign.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
title: "Set up an email drip campaign"
33
showStepsToc: true
44
---
5-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
6-
7-
<WorkflowsBetaSnippet />
85

96
In this guide we'll walk through creating a simple **drip campaign**. After following this guide, you will:
107
- Send a welcome email when a user signs up

contents/docs/workflows/import-customerio-optouts.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
title: "Import opt-out lists from Customer.io"
33
showStepsToc: true
44
---
5-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
6-
7-
<WorkflowsBetaSnippet />
85

96
In this guide we'll walk through importing your **opt-out lists from Customer.io** into PostHog. After following this guide, you will:
107
- Create an API key in Customer.io

contents/docs/workflows/launch-workflow.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ showStepsToc: true
44
---
55

66
import Tab from "components/Tab"
7-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
8-
9-
<WorkflowsBetaSnippet />
107

118
This guide covers creating a very basic workflow where we send an email to users who perform an event on your app or site. Since we are sending a message (email), you will need to set up a [channel](/docs/workflows/configure-channels) first.
129

contents/docs/workflows/library.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@
22
title: Content library and message templates
33
---
44

5-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
65
import CalloutBox from 'components/Docs/CalloutBox'
76

8-
<WorkflowsBetaSnippet />
9-
107
Our library lets you create reusable message templates for your workflows. You can access it from the **Library** tab in workflows.
118
<ProductScreenshot
129
imageLight="https://res.cloudinary.com/dmukukwp6/image/upload/q_auto,f_auto/the_library_95255c0656.png"

contents/docs/workflows/start-here.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ import { IconGraph, IconRewindPlay, IconToggle } from '@posthog/icons'
99
import ChannelPlatforms from './_snippets/channel-platforms'
1010
import OSButton from 'components/OSButton'
1111

12-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
13-
14-
<WorkflowsBetaSnippet />
15-
1612
<QuestLog firstSpeechBubble="Let's get started!" lastSpeechBubble="Time to launch your first workflow!">
1713

1814
<QuestLogItem

contents/docs/workflows/troubleshooting.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
---
22
title: Workflows troubleshooting and FAQs
33
---
4-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
5-
6-
<WorkflowsBetaSnippet />
74

85
## Emails not sending?
96

contents/docs/workflows/workflow-builder.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
---
22
title: Workflow builder
33
---
4-
import WorkflowsBetaSnippet from './_snippets/beta.mdx'
5-
6-
<WorkflowsBetaSnippet />
74

85
Workflows are a collection of steps that automate a process or deliver messages to your users based on your configured logic. In PostHog, you can create a workflow using our no-code workflow builder.
96

src/pages/docs/workflows/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import Link from 'components/Link'
77
import { ProductScreenshot } from 'components/ProductScreenshot'
88
import { Caption } from 'components/Caption'
99
import ChannelPlatforms from '../../../../contents/docs/workflows/_snippets/channel-platforms'
10-
import WorkflowsBetaSnippet from '../../../../contents/docs/workflows/_snippets/beta.mdx'
1110
import PricingTable from '../../../../contents/docs/workflows/_snippets/pricing-table.mdx'
1211

1312
export const Content = () => {
@@ -17,7 +16,6 @@ export const Content = () => {
1716
<h2 className="mb-4" id="overview">
1817
Overview
1918
</h2>
20-
<WorkflowsBetaSnippet />
2119
<div>
2220
<p>
2321
Workflows is PostHog's no-code, drag-and-drop tool for building logic that automates processes

src/pages/workflows/index.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react'
22
import { useStaticQuery, graphql } from 'gatsby'
33
import { SlidesTemplate, createSlideConfig } from 'components/Products/Slides'
44
import { useContentData } from 'hooks/useContentData'
5+
import Link from 'components/Link'
56

67
const PRODUCT_HANDLE = 'workflows_emails'
78

@@ -14,10 +15,12 @@ const CustomPricingSlide = () => {
1415
<h2 className="text-4xl font-bold mb-8">Pricing</h2>
1516

1617
<div className="bg-accent border border-primary max-w-xl mx-auto rounded p-8 text-center">
17-
<div className="text-2xl font-bold mb-4">Workflows is free during beta</div>
1818
<p className="text-xl">
19-
Eventually we'll offer usage-based pricing with a generous monthly free tier – like we do with all
20-
of our paid products.
19+
For complete workflows pricing, please visit the{' '}
20+
<Link to="/pricing" className="text-primary underline">
21+
pricing page
22+
</Link>
23+
.
2124
</p>
2225
</div>
2326
</div>

0 commit comments

Comments
 (0)