Peter Needle

Founder & President at Segura Systems

Peter Needle has over 30 years of experience in the business world. Peter began their career in 1990 at HSBC and worked there for 19 years. In 2009, they joined 1946Group as Director, where they provided financial support and expert advice to help businesses achieve their strategic goals. In 2011, they founded and became President and CEO of Segura Systems, a cloud-based supply chain management platform. Their mission was to make supply chains transparent, ethical, sustainable and more profitable.

import React from 'react';

import { Link } from 'react-router-dom';

import { connect } from 'react-redux';

import { startLogout } from '../actions/auth';

export const Header = ({ startLogout }) => (

<header className="header">

<div className="content-container">

<div className="header__content">

<Link className="header__title" to="/dashboard">

<h1>Budget Tracker</h1>

</Link>

<button className="button button--link" onClick={startLogout}>Logout</button>

</div>

</div>

</header>

);

const mapDispatchToProps = (dispatch) => ({

startLogout: () => dispatch(startLogout())

});

export default connect(undefined, mapDispatchToProps)(Header);

Links

Previous companies

HSBC logo

Org chart

Timeline

  • Founder & President

    October, 2021 - present

  • CEO

    July, 2011