import {Fragment} from 'react';
import styled from '@emotion/styled';
import FeatureBadge from 'sentry/components/badge/featureBadge';
import {Breadcrumbs} from 'sentry/components/breadcrumbs';
import ButtonBar from 'sentry/components/buttonBar';
import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
import * as Layout from 'sentry/components/layouts/thirds';
import {DatePageFilter} from 'sentry/components/organizations/datePageFilter';
import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter';
import PageFilterBar from 'sentry/components/organizations/pageFilterBar';
import {ProjectPageFilter} from 'sentry/components/organizations/projectPageFilter';
import SmartSearchBar from 'sentry/components/smartSearchBar';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import useOrganization from 'sentry/utils/useOrganization';
import {normalizeUrl} from 'sentry/utils/withDomainRequired';
import {useOnboardingProject} from 'sentry/views/performance/browser/webVitals/utils/useOnboardingProject';
import * as ModuleLayout from 'sentry/views/performance/moduleLayout';
import {ModulePageProviders} from 'sentry/views/performance/modulePageProviders';
import Onboarding from 'sentry/views/performance/onboarding';
import {LatencyChart} from 'sentry/views/performance/queues/charts/latencyChart';
import {ThroughputChart} from 'sentry/views/performance/queues/charts/throughputChart';
import {QueuesTable} from 'sentry/views/performance/queues/queuesTable';
import {MODULE_TITLE, RELEASE_LEVEL} from 'sentry/views/performance/queues/settings';
function QueuesLandingPage() {
const organization = useOrganization();
const onboardingProject = useOnboardingProject();
return (
{MODULE_TITLE}
{onboardingProject && (
)}
{!onboardingProject && (
{/* TODO: Make search bar work */}
)}
);
}
function LandingPageWithProviders() {
return (
);
}
export default LandingPageWithProviders;
const Flex = styled('div')`
display: flex;
flex-direction: column;
gap: ${space(2)};
`;