import { Globe, List } from 'lucide-react';
import * as React from 'react';
import { __ } from '@wordpress/i18n';
import { CompactSelect } from '@/components/CompactSelect';
import { MetricTile } from '@/components/MetricTile';
import { Button } from '@/components/ui/button';
import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group';
import { Body, Caption, CardTitle, Overline, PageTitle, SectionTitle } from '@/components/ui/typography';
import { computeDelta } from '@/lib/utils';
// Internal design reference. Reachable only via direct URL — not
// linked from any navigation. Imports from src/components/ +
// src/components/ui/ ONLY; anything that needs documenting here must
// first live in those shared locations.
function Section( { title, description, children }: { title: string; description?: string; children: React.ReactNode } ) {
return (
{ title }
{ description &&