← All components

Footer

A simple site footer component, styled with Tailwind. Not auto-wired into layout.tsx — import it where needed, e.g. `import { Footer } from '@/components/footer'`.

Copy the files below, or open this folder on GitHub. Each file is stamped with a limited-use licence, generator and date. SHA-256 is of the published catalog bytes, before the stamp.

id
footer
stack
Next.js
version
1.0.0
compatibility
nextjs >=16 <17 · react >=19 <20
requires
tailwind
env vars
Verified passing · daily buildIntegrity sha256:bc949d55dace9273

Files (1)

components/footer.tsx · sha256:bc949d55dace9273…
// Licensed by BotKelp — https://www.botkelp.com

export function Footer() {
  return (
    <footer className="border-t border-slate-200 px-6 py-4 text-sm text-slate-500">
      © {new Date().getFullYear()} <%= projectName %>. Built with AgentScaffold.
    </footer>
  );
}