Use reusable UI components from the components directory
mainThe src/components directory contains generic, composable, and reusable UI components extracted from the project's modules. These components are designed to be used directly in your Astro pages or other components to build consistent interfaces.
Commonly used components include:
<Button />with avariantprop to control styling.<Checkbox />for form inputs.
These components abstract away the underlying Flowbite and Tailwind CSS implementation details, providing a clean API for building the dashboard UI.
// Example usage of extracted components
<Button variant="primary">Click Me</Button>
<Checkbox />