+
+ 👋 Say hello to
+
PostHog 3000
+
+
+ We're past zero to one.
+
+ In this new version of PostHog, we're going from one… to 3000.
+
+ And this is just the beginning.
+
+
}
+ className="mb-5 self-start"
+ >
+ Read the blog post
+
+
+
+
+ Dark mode
+
+ Toggle between light and dark. Synced with your system by default.
+
+
+
+
+
+
+
+
+
+ Updated nav
+ Sub-products are now split out from project & data.
+
+
+
+
+
+ Notebooks
+
+ Analyze data from different angles and share results with your team - all in
+ a single document.
+
+
+
+
+
+
+
+
+
+
+
+
Side panel
+
+ It's this multipurpose thing you're looking at right now!
+
+ Create notebooks, read docs, contact support, and more.
+
+
+
+
+
+
+
+
+
+
+ Improved search
+
+ Search for anything with
+
+
+
+
+
+
+
+
Command bar
+
+ Navigate faster with
+
+
+
+
+
+
+
+
+
+
+ Toolbar redesigned
+
+ Dark mode: on. Same features, but easier to use. And we finally put the "bar"
+ in "toolbar".
+
+
+
+
+
+
+
+
+
+
+ Pro tip: Access this panel again from the{' '}
+
+
+ {' '}
+ menu
+
+
+
+ >
+ )
+}
diff --git a/frontend/src/layout/navigation-3000/sidepanel/sidePanelLogic.tsx b/frontend/src/layout/navigation-3000/sidepanel/sidePanelLogic.tsx
index 4e2191614a118..8e4ff16df7e41 100644
--- a/frontend/src/layout/navigation-3000/sidepanel/sidePanelLogic.tsx
+++ b/frontend/src/layout/navigation-3000/sidepanel/sidePanelLogic.tsx
@@ -1,4 +1,4 @@
-import { connect, kea, path, selectors } from 'kea'
+import { afterMount, connect, kea, path, reducers, selectors } from 'kea'
import { activationLogic } from 'lib/components/ActivationSidebar/activationLogic'
import { FEATURE_FLAGS } from 'lib/constants'
import { featureFlagLogic } from 'lib/logic/featureFlagLogic'
@@ -10,7 +10,12 @@ import { notificationsLogic } from './panels/activity/notificationsLogic'
import type { sidePanelLogicType } from './sidePanelLogicType'
import { sidePanelStateLogic } from './sidePanelStateLogic'
-const ALWAYS_EXTRA_TABS = [SidePanelTab.Settings, SidePanelTab.FeaturePreviews, SidePanelTab.Activity]
+const ALWAYS_EXTRA_TABS = [
+ SidePanelTab.Settings,
+ SidePanelTab.FeaturePreviews,
+ SidePanelTab.Activity,
+ SidePanelTab.Welcome,
+]
export const sidePanelLogic = kea