//! The components module contains all shared components for our app. Components are the building blocks of dioxus apps. //! They can be used to defined common UI elements like buttons, forms, and modals. In this template, we define a Hero //! component to be used in our app. mod hero; pub use hero::Hero; mod techs; pub use techs::TechCat; mod footer; pub use footer::Ender; mod experience; pub use experience::Experience;