@pagedotapp/page-footer-section
v0.0.0-alpha.11
Published
Footer section component with multiple layout variants
Readme
@pagedotapp/page-footer-section
A flexible footer section component for Page UI applications with responsive design support.
Installation
npm install @pagedotapp/page-footer-sectionUsage
import { PageFooterSection } from "@pagedotapp/page-footer-section"
function App() {
return (
<PageFooterSection
variant="multi-column"
columns={[
{
title: "Product",
links: [
{ label: "Features", href: "/features" },
{ label: "Pricing", href: "/pricing" },
],
},
{
title: "Company",
links: [
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
]}
copyright="© 2025 Your Company. All rights reserved."
/>
)
}Props
See TypeScript definitions for detailed prop types.
License
MIT
