//! The welcome page.
usearcature::prelude::*;/// Props for the `home` component.
////// Every field here crosses the wire and is visible in the browser's page
/// data, so this struct is the exposure boundary for what `/` sends.
#[page("home")]pubstructHomePage{/// The greeting shown in the hero.
pubmessage: String,
/// The configured application name, rendered in the navigation bar.
pubapp_name: String,
/// The Arcature version this project was generated against.
pubarcature_version: String,
}