import React from 'react' import PropTypes from 'prop-types' import TriangleButton from './shared/TriangleButton'; import { useNavigate } from 'react-router-dom'; import net from './../assets/icons/net.svg'; import { m } from 'framer-motion'; import useClickOutside from '../hooks/useClickOutside'; const _data = { requirements: [ 'Good software development fundamentals and knowledge of .NET architecture concepts & patterns', 'Good knowledge of software design patterns', 'Good knowledge of databases and database design', 'Experience in working with microservices is a big plus', 'The ability to work in a big team but also to work independently', 'Excellent communication skills' ], key: [ 'Working as a full-stack developer on various project and products', 'Working with 3rd-party APIs', 'Working on different integration scenarios', 'Setting up project structure and architecture', 'Being involved in full project development, from writing a specification to deploying a finished product' ], offer: [ 'Full Remote position', 'A fast-growth company with stable projects and strong international clients', 'Opportunity to work in teams with experienced engineers', 'Competitive employment conditions', 'An environment that will make you feel good about your job', 'Challenging and diverse projects', 'Support in your personal and professional growth', 'Flexible working hours', 'Private health insurance' ], } const _card = { role: '.Net Developer', shortDetails: 'Team Diligent is constantly growing! We are looking for a team player that will work with experienced engineers. If technology is your passion and you are ready to move the boundaries of your knowledge every day, then, Diligent is the right place for you. If you are not from Niš, we are offering a full remote position.', } const ExpandedCard = ({card, setExpanded, setExpandedCard}) => { const linkTo = useNavigate(); return (
{setExpanded(false); setExpandedCard({})}} direction={'left'}/>
{setExpanded(false); setExpandedCard({})}} direction={'left'}/>

{card.role}

{_card.shortDetails}

Key Responsibilities:


Requirements:


What We Offer:


Apply
) } ExpandedCard.propTypes = {} export default ExpandedCard