import React, { useState } from 'react' import { ThemeProvider, Flex, Box, Text } from 'theme-ui' import { theme } from '../../theme' import { MapPin, Globe, ExternalLink } from 'react-feather' import TabItem from './TabItem' import LocationPage from './LocationPage' import UserAgentPage from './UserAgentPage' const Popup = () => { const [tab, setTab] = useState('location') return ( setTab('location')} /> setTab('useragent')} /> window.open('https://vytal.io')} /> window.open('https://vytal.io')} > Vytal does not change your IP address. To change your IP address you will need to use a VPN such as Proton VPN . ) } export default Popup