summary refs log tree commit diff stats
path: root/src/pages/home.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/home.rs')
-rw-r--r--src/pages/home.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/pages/home.rs b/src/pages/home.rs
index 387562e..b9dba64 100644
--- a/src/pages/home.rs
+++ b/src/pages/home.rs
@@ -10,7 +10,8 @@ use leptos_router::{
 };
 
 use crate::components::{
-    product_overview::ProductOverview, recipies::Recipies, site_header::SiteHeader,
+    inventory::Inventory, product_overview::ProductOverview, recipies::Recipies,
+    site_header::SiteHeader, unit_overview::UnitOverview,
 };
 
 #[component]
@@ -43,8 +44,10 @@ pub fn Home() -> impl IntoView {
 
             <div class="flex flex-col content-start">
                 <SiteHeader logo=icondata_io::IoRoseSharp back_location="/" name="Rocie" />
-                <ProductOverview />
+                <Inventory />
                 <Recipies />
+                <ProductOverview />
+                <UnitOverview />
             </div>
         </ErrorBoundary>
     }