import Link from 'next/link' import React from 'react' interface FooterProps { LinkComponent?: any appName?: string } export function Footer({ LinkComponent = Link, appName = 'Pulse' }: FooterProps) { const Component = LinkComponent return ( ) }