import ActionCard from '../components/shared/ActionCard'; import PageLayout from '../layout/PageLayout'; import net from './../assets/icons/caseStudy/net.svg'; import powerBi from './../assets/icons/caseStudy/power-bi.svg'; import powerAutomate from './../assets/icons/caseStudy/power-automate.svg'; import mssql from './../assets/icons/caseStudy/MSSQL.svg'; import dataFactory from './../assets/icons/caseStudy/data-factory.svg'; import { useEffect } from 'react'; import { motion } from 'framer-motion'; import Wrapper from '../layout/Wrapper'; import TechNuggets from '../components/shared/TechNuggets'; import useAnalytics from '../hooks/useAnalytics'; const numbers = [ { value: 6, static: '+', title: 'Team Members', }, { value: 6, static: '+', title: 'Months Project duration', }, ]; const _data = { heading: { subheading: 'Case Study', heading: 'Resource Planning System', imgUrl: 'https://lh3.googleusercontent.com/b9F35_JPlulVv0jS3UAYKJ2z6gz_AsWprQef_1wWTFGJlhEyLGfA1AthyUcdgrm1Qdk=w2400', paragraph: 'Enterprise Resource Planning System for Law Offices', }, about: { heading: 'About the Client', paragraph: 'Stankovic & Partners Law Office has the qualifications and skills needed to provide high-quality legal services. The firm has a team of experienced attorneys who are familiar with a wide range of legal issues and can provide comprehensive legal assistance to their clients. In addition, the firm has a well-established reputation for providing excellent customer service and is committed to providing each client with the individualized attention they deserve.', country_heading: 'Country', country_name: 'Serbia', industry_heading: 'Industry', industry_name: 'Law', }, domain: { heading: 'Domain', paragraph: 'To streamline their law practice business, our main goal was to create one system that would house all data and events daily encountered, such as contacts, clients, hearings, cases, court staff, scheduling, and planning. Having one central location for all this information will allow the law firm to easily keep track of everything and make changes or adjustments as needed.', }, challanges: { heading: 'Challanges', paragraph: 'Some of our biggest challenges were implementing a resource-optimized web application that united requirements and provided a single point for creating and viewing entities (contacts, clients, hearings, cases...). By doing this, we were able to not only improve efficiency but also reduce costs.', }, solution: { heading: 'Solution', paragraph: 'With this software, our client could plan and organize better. They could monitor their work orders better and they moved from using multiple different software and a lot of spreadsheets to one centralized system.', imgUrl: 'https://lh4.googleusercontent.com/Ajfa7b-MKsyg8JAkaXQJNnskEKJGiBaK7YxlbRIIoKmtSut8jHRm7Dxxw6a7y-gepD4=w2400', }, results: { heading: 'Results', list: [ { id: 1, text: 'Uploading documents for every case and for every hearing', }, { id: 2, text: 'Creating unique database', }, { id: 3, text: 'Creating invoices and billing', }, { id: 4, text: 'Centralized history data for every case', }, { id: 5, text: 'Reliable system', }, ], }, technologies: [ { id: 1, link: net, }, { id: 2, link: powerBi, }, { id: 3, link: powerAutomate, }, { id: 4, link: mssql, }, { id: 5, link: dataFactory, }, ], }; export default function CaseStudyResource() { useEffect(() => { document.title = 'Case Study: Resource Planning System'; }, []); useAnalytics('Case Study: Resource Planning System'); return (
{/* Heading Section */}
{_data.heading.subheading}

{_data.heading.heading}

{_data.heading.paragraph}

{numbers.map((item, i) => (

{item.value} {item.static}

{item.title}

))}
{/* About the Client Section */}

{_data.about.heading}

{_data.about.paragraph}

{_data.about.country_heading}

{_data.about.country_name}

{_data.about.industry_heading}

{_data.about.industry_name}

{/* Domain Section */}

{_data.domain.heading}

{_data.domain.paragraph}

{/* Challanges, Solution Section */}

{_data.challanges.heading}

{_data.challanges.paragraph}

{_data.solution.heading}

{_data.solution.paragraph}

Case Study main image
{/* Results Section */}

{_data.results.heading}

    {_data.results.list.map(item => (
  • {item.text}
  • ))}
{/* Technologies Section */}

Technologies

{/* CTA Section */}
); }