import styled from '@emotion/styled'; import { H2Title, IconCalendarEvent, IconMailCog, MOBILE_VIEWPORT, Section, UndecoratedLink, } from 'twenty-ui'; import { SettingsCard } from '@/settings/components/SettingsCard'; import { SettingsPath } from '@/types/SettingsPath'; import { useTheme } from '@emotion/react'; import { useLingui } from '@lingui/react/macro'; import { getSettingsPath } from '~/utils/navigation/getSettingsPath'; const StyledCardsContainer = styled.div` display: flex; gap: ${({ theme }) => theme.spacing(4)}; margin-top: ${({ theme }) => theme.spacing(6)}; @media (max-width: ${MOBILE_VIEWPORT}pxF) { flex-direction: column; } `; export const SettingsAccountsSettingsSection = () => { const { t } = useLingui(); const theme = useTheme(); return (
} title={t`Emails`} description={t`Set email visibility, manage your blocklist and more.`} /> } title={t`Calendar`} description={t`Configure and customize your calendar preferences.`} />
); };