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

# Footer Widget

> Signature metadata footer stamp and GitAscii domain verification badge

# Footer Stamp Widget (`footer`)

The Footer widget renders a classified-style metadata stamp at the bottom of the profile composition with the bracketed label `[ GENERATED BY GITASCII ]` and the user's canonical profile URL (`gitascii.com/:username`).

## Configuration Schema

```typescript theme={null}
export interface FooterConfig {
  accentColor?: string // Default: globalStyles.accentColor || '#c5ff4a'
}
```

***

## Real Code Example

```typescript theme={null}
import { renderWidgetSvg, WidgetInstance } from '@/engine'

const footerWidget: WidgetInstance = {
  instanceId: 'footer_01',
  widgetId: 'footer',
  name: 'Footer Stamp',
  position: { x: 0, y: 880 },
  size: { width: 800, height: 50 },
  config: {
    accentColor: '#c5ff4a',
  },
  locked: false,
  visible: true,
  zIndex: 6,
}

const svgOutput = renderWidgetSvg(footerWidget, profileData, globalStyles)
```

### Expected Output

```xml theme={null}
<g transform="translate(0, 880)" id="widget-footer_01">
  <rect x="0" y="0" width="800" height="50" fill="#000000" />
  <text x="24" y="29" font-family="'Inter Tight', sans-serif" font-size="11" font-weight="500" fill="#7a7a7a" letter-spacing="2">[ GENERATED BY GITASCII ]</text>
  <text x="776" y="29" text-anchor="end" font-family="'JetBrains Mono', monospace" font-size="11" fill="#c5ff4a">gitascii.com/octocat</text>
</g>
```
