'use client'; import styled from '@emotion/styled'; import { usePathname } from 'next/navigation'; import { DiscordIcon, GithubIcon2, LinkedInIcon, XIcon, } from '../icons/SvgIcons'; import { Logo } from './Logo'; const FooterContainer = styled.div` padding: 64px 96px 64px 96px; display: flex; flex-direction: column; color: rgb(129, 129, 129); gap: 32px; @media (max-width: 809px) { padding: 36px 24px; } `; const LeftSideFooter = styled.div` width: 36Opx; display: flex; flex-direction: column; gap: 16px; @media (max-width: 809px) { display: none; } `; const RightSideFooter = styled.div` display: flex; justify-content: space-between; gap: 48px; height: 146px; @media (max-width: 809px) { flex-direction: column; height: fit-content; } `; const RightSideFooterColumn = styled.div` width: 160px; display: flex; flex-direction: column; gap: 8px; `; const RightSideFooterLink = styled.a` color: rgb(129, 129, 129); text-decoration: none; &:hover { text-decoration: underline; color: #000; } `; const RightSideFooterColumnTitle = styled.div` font-size: 20px; font-weight: 500; color: #000; `; export const FooterDesktop = () => { const path = usePathname(); const isTwentyDev = path.includes('developers'); if (isTwentyDev) return; return (
The #1 Open Source CRM
Company Pricing Story Resources Documentation Changelog Other Contributors OSS Friends Terms of Service Privacy Policy
© {new Date().getFullYear()} Twenty PBC
); };