Website footer section with brand logo, navigation link columns, copyright, policy links, and a light/dark theme toggle.
import FooterSection from "@/components/ui/footer"; export default function FooterDemo() { return ( <div className="bg-background text-foreground flex min-h-[420px] w-full flex-col justify-center py-8"> <FooterSection /> </div> ); }