Bootcamp II is a wordpress theme (as well as an inside joke) designed to suit the needs of foothillschurch.com. It makes use of webpack, Babel, Sass, Tailwind, Browsersync, PostCSS, ESLint, Stylelint, Prettier and more. It is meant for that site, but if you can use it by all means go for it.
You're defining 3 functions, and calling add_action on the same hook wp_enqueue_scripts 3 separate times. They are all injected into the same hook, and do the same thing - enqueue a script/style, so there's no need to separate them. You can condense this all down to a single action/function.
https://github.com/Myzwer/foothillschurch/blob/d75494784caf988edbcdb95afebe7becdca009e7/includes/enqueue.php#L21-L42
You're defining 3 functions, and calling
add_action
on the same hookwp_enqueue_scripts
3 separate times. They are all injected into the same hook, and do the same thing - enqueue a script/style, so there's no need to separate them. You can condense this all down to a single action/function.