import { useTranslation } from 'next-i18next'; import Heading from '@/components/shared/Heading'; import ResumeInput from '@/components/shared/ResumeInput'; const Location = () => { const { t } = useTranslation(); return ( <> ('builder.leftSidebar.sections.location.heading')} />
('builder.leftSidebar.sections.location.address.label')} path="basics.location.address" className="sm:col-span-2" /> ('builder.leftSidebar.sections.location.city.label')} path="basics.location.city" /> ('builder.leftSidebar.sections.location.region.label')} path="basics.location.region" /> ('builder.leftSidebar.sections.location.country.label')} path="basics.location.country" /> ('builder.leftSidebar.sections.location.postal-code.label')} path="basics.location.postalCode" />
); }; export default Location;