Card
Notifications
Notifications
Choose what you want to be notified about.
Push Notifications
Send notifications to device.
Email Notifications
Receive emails for activity updates.
Stat card
Total Revenue
$45,231.89
+20.1% from last month
Create project
Create project
Deploy your new project in one click.
Next.js
Remix
Astro
Nuxt
Usage
use maud_ui::primitives::card;
use maud::html;
let html = card::render(card::Props {
title: Some("Project stats".into()),
description: Some("Overview of your project.".into()),
children: html! { p { "Content goes here." } },
footer: Some(html! {
button.mui-btn.mui-btn--primary.mui-btn--sm { "View details" }
}),
});