> ## Documentation Index
> Fetch the complete documentation index at: https://shipfast.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Footer

> Navigation links, legal pages, and social media

<img src="https://mintcdn.com/shipfastso/-9P87iaUtQEkQp6B/images/footer-preview.png?fit=max&auto=format&n=-9P87iaUtQEkQp6B&q=85&s=293f7c0af5ab30d13c6f775c5fb0b8a4" alt="Footer component preview" className="rounded-lg border mb-6" title="" width="2596" height="744" data-path="images/footer-preview.png" />

## Edit Navigation Links

Open `/components/Footer.tsx`:

```tsx theme={null}
const NAV_SECTIONS = [
  {
    heading: "Product",
    items: [
      { text: "Features", url: "#features" },
      { text: "Pricing", url: "#pricing" },
      { text: "FAQ", url: "#faq" },
    ],
  },
  {
    heading: "Company",
    items: [
      { text: "About", url: "/about" },
      { text: "Blog", url: "/blog" },
      { text: "Contact", url: "/contact" },
    ],
  },
]
```

Add, remove, or rename sections as needed.

***

## Change Social Links

```tsx theme={null}
const SOCIALS = [
  { icon: <Twitter className="size-5" />, url: "https://twitter.com/yourhandle", name: "Twitter" },
  { icon: <Github className="size-5" />, url: "https://github.com/yourusername", name: "GitHub" },
]
```

Remove socials you don't use. Import icons from `lucide-react`.

***

## Legal Pages

```tsx theme={null}
const LEGAL_LINKS = [
  { text: "Terms of Service", url: "/tos" },
  { text: "Privacy Policy", url: "/privacy" },
]
```

Legal pages are already set up at `/app/tos/page.tsx` and `/app/privacy/page.tsx`. Edit those files to add your actual terms and privacy policy.

***

## Brand Info

Logo and tagline come from `/config.ts`:

```tsx /config.ts theme={null}
export const config = {
  name: "YourApp",
  description: "Launch your SaaS in days",
  logoUrl: "/logo.svg",
  siteUrl: "https://yourdomain.com",
}
```

***

<Warning>
  Update your Terms of Service and Privacy Policy. The default templates are placeholders - you need real legal pages before launching.
</Warning>

<Tip>
  Keep footer navigation simple. 2-3 columns max. More than that, nobody reads them.
</Tip>
