import variables from 'config/variables'; import { MdOutlineOpenInNew } from 'react-icons/md'; import { Checkbox } from 'components/Form/Settings'; import { Header, Content } from '../Layout'; function OfflineMode() { return ( <> {variables.getMessage('modals.welcome.sections.privacy.offline_mode_description')} ); } function DuckDuckGoProxy() { return ( <> {variables.getMessage('modals.welcome.sections.privacy.ddg_proxy_description')} ); } function Links() { return ( <> {variables.getMessage('modals.welcome.sections.privacy.links.title')} {variables.getMessage('modals.welcome.sections.privacy.links.privacy_policy')} {variables.getMessage('modals.welcome.sections.privacy.links.source_code')} ); } function PrivacyOptions() { return (
); } export { PrivacyOptions as default, PrivacyOptions };