import { HTMLAttributes } from 'react'; import Image from 'next/image'; import Link from 'next/link'; import { Github, Slack, Twitter } from 'lucide-react'; import { cn } from '@documenso/ui/lib/utils'; export type FooterProps = HTMLAttributes; export const Footer = ({ className, ...props }: FooterProps) => { return (
Documenso Logo
Blog Pricing Status Support Privacy

© {new Date().getFullYear()} Documenso, Inc. All rights reserved.

); };