Add "Powered by dashboardr" branding to footer
add_powered_by_dashboardr.RdAdds a subtle, sleek "Powered by dashboardr" badge with logo to the bottom-right of the page footer. Integrates seamlessly with existing footer content.
Examples
if (FALSE) { # \dontrun{
dashboard <- create_dashboard("my_dash", "My Dashboard") %>%
add_page(name = "Home", text = "Welcome!") %>%
add_powered_by_dashboardr()
# With custom size
dashboard <- create_dashboard("my_dash") %>%
add_powered_by_dashboardr(size = "medium", style = "badge")
} # }