@chiselandco/footer
v1.0.1
Published
Chisel&Co. branded footer component for Next.js projects.
Readme
@chiselandco/footer
A minimal branded footer component for Next.js projects.
Installation
npm install @chiselandco/footer
# or
pnpm add @chiselandco/footer
# or
yarn add @chiselandco/footerRequirements
- Next.js 13+
- React 18+
- Tailwind CSS
Usage
import { ChiselFooter } from '@chiselandco/footer'
export default function Layout({ children }) {
return (
<>
<main>{children}</main>
<ChiselFooter />
</>
)
}To keep the footer pinned to the bottom of the page, make your layout a flex column:
<body className="flex min-h-screen flex-col">
<main className="flex-1">{children}</main>
<ChiselFooter />
</body>What it renders
A full-width white footer with a top border, centered text reading "Carved by" alongside the Chisel&Co. logo, which links to chiselandco.com.
Notes
- The component uses Tailwind CSS utility classes. Ensure Tailwind is configured in the host project.
- The logo is served from the Chisel&Co. CDN — no local assets required.
