// Import the Yew prelude module, including the 'html!' macro and necessary traits. use yew::prelude::*; /// The Home functional component for the landing page. #[function_component(Home)] pub fn home() -> Html { // The 'html!' macro is used to define the component's structure using JSX-like syntax. html! { // Main container for layout purposes.
// 1. The Hero section (Topmost part of the page).
// Main title/headline.

{ "I am Malxte" }

// Subtitle/tagline below the main headline.

{ "Developer | Creator | Tech Enthusiast" }

// 2. The 'About Me' section (Appears as the user scrolls down).

{ "About me" }

// Card containing the biographical text.

{ "Hi, I am a young highly motivated Rust 🦀 programmer and Nostr Lover ❤️. I Like to share my Projects, Tech News and Tips." }

{ "When I'm not coding, I create content or work on my own projects. My main interests are in Bitcoin, Rust, AI, Nostr and Nym" }

// 3. Social Media Links section (Links that animate on hover).
} }