import { useState } from 'react' import { BasicPageHeader, Container, Stack } from '@/components/atoms' import data from '@/data/atomic-library-showcase.json' import { AvatarsUserElementsSection } from '@/components/atomic-library/AvatarsUserElementsSection' import { BadgesIndicatorsSection } from '@/components/atomic-library/BadgesIndicatorsSection' import { ButtonsActionsSection } from '@/components/atomic-library/ButtonsActionsSection' import { CardsMetricsSection } from '@/components/atomic-library/CardsMetricsSection' import { EnhancedComponentsSection } from '@/components/atomic-library/EnhancedComponentsSection' import { FeedbackSection } from '@/components/atomic-library/FeedbackSection' import { FormControlsSection } from '@/components/atomic-library/FormControlsSection' import { InteractiveElementsSection } from '@/components/atomic-library/InteractiveElementsSection' import { LayoutComponentsSection } from '@/components/atomic-library/LayoutComponentsSection' import { ProgressLoadingSection } from '@/components/atomic-library/ProgressLoadingSection' import { SummarySection } from '@/components/atomic-library/SummarySection' import { TypographySection } from '@/components/atomic-library/TypographySection' export function AtomicLibraryShowcase() { const [switchChecked, setSwitchChecked] = useState(false) const [selectedDate, setSelectedDate] = useState() const [rangeValue, setRangeValue] = useState<[number, number]>([20, 80]) const [filterValue, setFilterValue] = useState('') const [rating, setRating] = useState(3) const [numberValue, setNumberValue] = useState(10) const { pageHeader, sections } = data return ( ) }