'use client' import styled from '@emotion/styled' import { Logo } from './Logo'; import { DiscordIcon, GithubIcon, LinkedInIcon, XIcon } from "./Icons"; const FooterContainer = styled.div` padding: 64px 96px 64px 96px; display: flex; flex-direction: column; color: rgb(129, 129, 129); gap: 32px; `; const LeftSideFooter = styled.div` width: 36Opx; display: flex; flex-direction: column; gap: 16px;`; const RightSideFooter = styled.div` display: flex; justify-content: space-between;`; 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 FooterNav = () => { return
The #1 Open Source CRM
Company Pricing Story Resources Documentation Changelog Other OSS Friends Terms of Service Privacy Policy
© 2023 Twenty PBC
; }