Tables
Ready to use custom table components.
Career
Departmentwise listing of avialble job positions.
Design
Put your creative ideas into action at a product-driven and design-led organization.
Marketing Designer | San Francisco (Remote) | |
Product Design Lead | United Kingdom | |
Brand Designer | Canada (Remote) | |
Sr. UX Engineer | Ireland (Remote) |
Engineering
Develop quality code that is built for scale for millions of people looking to eliminate “work about work” with our platform.
Principal Data Engineer | Philippines (Remote) | |
Software Engineer Ruby on Rails | United Kingdom | |
Sr. Engineering Manager | Canada (Remote) | |
Sr. React Engineer | United Kingdom (Remote) |
General & Administrative
Recruit, retain, and enable our growing number of Geeks through programs that support our people and our business.
Account Executive | Philippines (Remote) | |
Customer Success Manager | United Kingdom (Remote) | |
Sales Development Representative | Canada (Remote) |
// import node module librariesimport { Card } from 'react-bootstrap';
// import widget/custom componentsimport { GKPositionListTable } from 'widgets';
// import data filesimport PositionListData from 'data/marketing/career/PositionListData';
export const Table1Example = () => { return ( <section className='p-4 bg-light'> <Card className='p-10'> {PositionListData.map((item, index) => { return <GKPositionListTable item={item} key={index} /> })} </Card> </section> )}