import { Link } from 'react-router-dom'; import styled from '@emotion/styled'; import { H2Title, IconCalendarEvent, IconMailCog } from 'twenty-ui'; import { SettingsNavigationCard } from '@/settings/components/SettingsNavigationCard'; import { getSettingsPagePath } from '@/settings/utils/getSettingsPagePath'; import { SettingsPath } from '@/types/SettingsPath'; import { Section } from '@/ui/layout/section/components/Section'; import { UndecoratedLink } from '@/ui/navigation/link/components/UndecoratedLink'; const StyledCardsContainer = styled.div` display: flex; gap: ${({ theme }) => theme.spacing(4)}; margin-top: ${({ theme }) => theme.spacing(6)}; `; export const SettingsAccountsSettingsSection = () => { return (
Set email visibility, manage your blocklist and more. Configure and customize your calendar preferences.
); };