chore: updated footer component

Signed-off-by: Adithya Krishna <adikrish@redhat.com>
This commit is contained in:
Adithya Krishna
2023-08-26 13:19:47 +05:30
committed by Mythie
parent 2b53f796bd
commit cf799e63ca

View File

@ -10,6 +10,19 @@ import { cn } from '@documenso/ui/lib/utils';
export type FooterProps = HTMLAttributes<HTMLDivElement>; export type FooterProps = HTMLAttributes<HTMLDivElement>;
export const Footer = ({ className, ...props }: FooterProps) => { export const Footer = ({ className, ...props }: FooterProps) => {
const socialLinks = [
{ href: 'https://twitter.com/documenso', icon: <Twitter className="h-6 w-6" /> },
{ href: 'https://github.com/documenso/documenso', icon: <Github className="h-6 w-6" /> },
{ href: 'https://documenso.slack.com', icon: <Slack className="h-6 w-6" /> },
];
const footerLinks = [
{ href: '/pricing', text: 'Pricing' },
{ href: 'https://status.documenso.com', text: 'Status', target: '_blank' },
{ href: 'mailto:support@documenso.com', text: 'Support' },
// { href: '/privacy', text: 'Privacy'}
];
return ( return (
<div className={cn('border-t py-12', className)} {...props}> <div className={cn('border-t py-12', className)} {...props}>
<div className="mx-auto flex w-full max-w-screen-xl flex-wrap items-start justify-between gap-8 px-8"> <div className="mx-auto flex w-full max-w-screen-xl flex-wrap items-start justify-between gap-8 px-8">
@ -19,61 +32,25 @@ export const Footer = ({ className, ...props }: FooterProps) => {
</Link> </Link>
<div className="mt-4 flex flex-wrap items-center gap-x-4 gap-y-4 text-[#8D8D8D]"> <div className="mt-4 flex flex-wrap items-center gap-x-4 gap-y-4 text-[#8D8D8D]">
<Link {socialLinks.map((link, index) => (
href="https://twitter.com/documenso" <Link key={index} href={link.href} target="_blank" className="hover:text-[#6D6D6D]">
target="_blank" {link.icon}
className="hover:text-[#6D6D6D]" </Link>
> ))}
<Twitter className="h-6 w-6" />
</Link>
<Link
href="https://github.com/documenso/documenso"
target="_blank"
className="hover:text-[#6D6D6D]"
>
<Github className="h-6 w-6" />
</Link>
<Link
href="https://documenso.slack.com"
target="_blank"
className="hover:text-[#6D6D6D]"
>
<Slack className="h-6 w-6" />
</Link>
</div> </div>
</div> </div>
<div className="flex flex-wrap items-center gap-x-4 gap-y-2.5"> <div className="flex flex-wrap items-center gap-x-4 gap-y-2.5">
<Link {footerLinks.map((link, index) => (
href="/pricing" <Link
className="flex-shrink-0 text-sm text-[#8D8D8D] hover:text-[#6D6D6D]" key={index}
> href={link.href}
Pricing target={link.target}
</Link> className="flex-shrink-0 text-sm text-[#8D8D8D] hover:text-[#6D6D6D]"
>
<Link {link.text}
href="https://status.documenso.com" </Link>
target="_blank" ))}
className="flex-shrink-0 text-sm text-[#8D8D8D] hover:text-[#6D6D6D]"
>
Status
</Link>
<Link
href="mailto:support@documenso.com"
className="flex-shrink-0 text-sm text-[#8D8D8D] hover:text-[#6D6D6D]"
>
Support
</Link>
{/* <Link
href="/privacy"
className="flex-shrink-0 text-sm text-[#8D8D8D] hover:text-[#6D6D6D]"
>
Privacy
</Link> */}
</div> </div>
</div> </div>
<div className="mx-auto mt-4 w-full max-w-screen-xl px-8 md:mt-12 lg:mt-24"> <div className="mx-auto mt-4 w-full max-w-screen-xl px-8 md:mt-12 lg:mt-24">