Footer

Components: Footer

Displays a Footer Section. You can configure the different sections inside strafer.config.ts in footer.sections. You can also configure if you want to display NewsletterButton by setting withNewsletter.

strafer.config.ts
// ...
 footer: {
    withNewsletter: true,
    sections: [{
      title: 'Links',
      links: [{
        href: '#features',
        label: 'Features',
      }, {
        href: '#pricing',
        label: 'Pricing',
      }, {
        href: 'https://docs.strafer.app',
        label: 'Docs',
      }, {
        href: 'mailto:contact@strafer.app',
        label: 'Support',
      }],
    }, {
      title: 'Legal',
      links: [{
        href: '/privacy-policy',
        label: 'Privacy Policy',
      }],
    }],
  }
Footer.tsx
import Footer from "@/components/Footer";
 
<Footer />

Footer