Skip to content

Commit aa40ba1

Browse files
committed
🔄 Sync Documentation templates
1 parent 2f2f696 commit aa40ba1

File tree

1 file changed

+56
-0
lines changed
  • website/data/docs/landing-page-components

1 file changed

+56
-0
lines changed

website/data/docs/landing-page-components/footer.mdx

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,61 @@ import { LandingFooterLink } from '@/components/landing/footer/LandingFooterLink
344344

345345
</ComponentExample>
346346

347+
### With background gradient
348+
<ComponentExample
349+
previewComponent={
350+
<LandingFooter
351+
title="Beautiful landing pages in minutes"
352+
description="The easiest way to make a landing page for your startup: SaaS, iOS/Android app, directory, personal page and more."
353+
footnote="© 2025 Page AI. All rights reserved."
354+
withBackgroundGradient
355+
>
356+
<LandingFooterColumn title="Product">
357+
<LandingFooterLink href="#">Features</LandingFooterLink>
358+
<LandingFooterLink href="#">Pricing</LandingFooterLink>
359+
<LandingFooterLink href="#">Integrations</LandingFooterLink>
360+
<LandingFooterLink href="#">FAQ</LandingFooterLink>
361+
</LandingFooterColumn>
362+
363+
<LandingFooterColumn title="Company">
364+
<LandingFooterLink href="#">About</LandingFooterLink>
365+
<LandingFooterLink href="#">Careers</LandingFooterLink>
366+
<LandingFooterLink href="#">Press</LandingFooterLink>
367+
<LandingFooterLink href="#">Blog</LandingFooterLink>
368+
</LandingFooterColumn>
369+
</LandingFooter>
370+
}
371+
>
372+
373+
```jsx
374+
import { LandingFooter } from '@/components/landing/footer/LandingFooter';
375+
import { LandingFooterColumn } from '@/components/landing/footer/LandingFooterColumn';
376+
import { LandingFooterLink } from '@/components/landing/footer/LandingFooterLink';
377+
378+
<LandingFooter
379+
title="Beautiful landing pages in minutes"
380+
description="The easiest way to make a landing page for your startup: SaaS, iOS/Android app, directory, personal page and more."
381+
footnote="© 2025 Page AI. All rights reserved."
382+
withBackgroundGradient
383+
>
384+
<LandingFooterColumn title="Product">
385+
<LandingFooterLink href="#">Features</LandingFooterLink>
386+
<LandingFooterLink href="#">Pricing</LandingFooterLink>
387+
<LandingFooterLink href="#">Integrations</LandingFooterLink>
388+
<LandingFooterLink href="#">FAQ</LandingFooterLink>
389+
</LandingFooterColumn>
390+
391+
<LandingFooterColumn title="Company">
392+
<LandingFooterLink href="#">About</LandingFooterLink>
393+
<LandingFooterLink href="#">Careers</LandingFooterLink>
394+
<LandingFooterLink href="#">Press</LandingFooterLink>
395+
<LandingFooterLink href="#">Blog</LandingFooterLink>
396+
</LandingFooterColumn>
397+
</LandingFooter>
398+
```
399+
400+
</ComponentExample>
401+
347402
## API Reference
348403

349404
| Prop Name | Prop Type | Required | Default |
@@ -357,6 +412,7 @@ import { LandingFooterLink } from '@/components/landing/footer/LandingFooterLink
357412
| **withBackgroundGlow** <Tippy>Adds a glowing background effect to the footer.</Tippy> | `boolean` | No | `false` |
358413
| **variant** <Tippy>The color variant of the footer.</Tippy> | `'primary'` ǀ `'secondary'` | No | `'primary'` |
359414
| **backgroundGlowVariant** <Tippy>The color variant of the glowing background.</Tippy> | `'primary'` ǀ `'secondary'` | No | `'primary'` |
415+
| **withBackgroundGradient** <Tippy>Determines if the footer should have a gradient background.</Tippy> | `boolean` | No | `false` |
360416

361417

362418
## More Examples

0 commit comments

Comments
 (0)