import { useParams } from 'common' import Image from 'next/image' import { useIsExplorerEnabled } from './FeaturePreviewContext' import { InlineLink } from '@/components/ui/InlineLink' import { BASE_PATH } from '@/lib/constants' export const ExplorerPreview = () => { const { ref } = useParams() const isExplorerEnabled = useIsExplorerEnabled() return (

The Explorer is a new unified workspace for querying your data and chatting with the Assistant, and is an early preview of where we're heading with the SQL Editor.

Notebooks are the first new feature of the Explorer — mix query cells and markdown notes in a single document, so your queries and context stay together. Use them to write runbooks, document incidents, build reusable reports, and more!

explorer-preview

Enabling this preview will:

) }