use yew::prelude::*; use crate::components::{Inbox, ResidenceCard, ResidenceStatus}; use crate::routing::ViewContext; #[derive(Properties, PartialEq)] pub struct HomeViewProps { pub context: ViewContext, } #[function_component(HomeView)] pub fn home_view(props: &HomeViewProps) -> Html { // Mock user data - in a real app this would come from authentication/user context let user_name = "Timur Gordon".to_string(); let user_email = Some("timur@example.com".to_string()); html! { <>
{"Welcome back to your Digital Freezone dashboard"}