Footer

DaisyUI

Footer can contain logo, copyright notice, and links to other pages.

Basic Footer
Centered Footer

Logo and copyright centered.

Vertical Footer

Stacked layout with social links.

Code Example
use rsxui::components::{Footer, FooterTitle};
use rsx_macros::rsx;
let html = rsx! {
    <Footer class="bg-base-200 p-10">
        <nav>
            <FooterTitle>"Services"</FooterTitle>
            <a class="link link-hover">"Branding"</a>
        </nav>
    </Footer>
};