Team

Meet the Team behind Geeks UI


Team #1

Our Team

Want to work with some of the best global talent and build a tool used by all the companies you know and love? Join the Geeks team and help shape the future of design.

Openings
// import node module libraries
import { Link } from 'react-router-dom';
import { Col, Row, Container, Image } from 'react-bootstrap';
// import custom components
import GKTippy from 'components/elements/tooltips/GKTippy';
// import data files
import OurTeamData from 'data/marketing/AboutusOurTeamData';
export const Team1Example = () => {
return (
<section className="py-lg-16 py-10 bg-white">
<Container>
<Row>
<Col md={6} sm={12} className="offset-right-md-6 mb-10">
<h2 className="display-4 mb-3 fw-bold">Our Team</h2>
<p className="lead mb-5">Want to work with some of the best global talent and build a tool used by all the companies you know and love? Join the Geeks team and help shape the future of design. </p>
<Link to="#" className="btn btn-primary"> Openings </Link>
</Col>
</Row>
<Row>
{OurTeamData.map((item, index) => (
<Col md={2} sm={3} key={index} className="col-3">
<div className="p-xl-5 p-lg-3 mb-3 mb-lg-0">
<GKTippy
content={<span>
<span className="fs-4">{item.name} </span> <br />
<span className="fs-4 fw-light">{item.designation} </span>
</span>} >
<Image src={item.image} alt="" className="imgtooltip img-fluid rounded-circle" />
</GKTippy>
</div>
</Col>
))}
</Row>
</Container>
</section>
);
}

Team #2

World-class Instructors

Classes Taught by Industry Expert

Geeks teachers are icons, experts, and industry rock stars excited to share their experience, wisdom, and trusted tools with you.

Mary Roberts

Professional Web Developer

4.5
9,692 Students
6 Course

Esther Howard

Developer of Bootcamp

4.5
5,128 Students
4 Course

Ross Johnson

Engineering Architect

4.5
7,423 Students
8 Course

James Davies

Web Developer and Designer

4.5
3,896 Students
10 Course
// import node module libraries
import { Link } from 'react-router-dom';
import { Col, Row, Container } from 'react-bootstrap';
// import custom components
import SectionHeadingCenter from 'components/marketing/common/section-headings/SectionHeadingCenter';
import InstructorCard from 'components/marketing/common/cards/InstructorCard';
// import data files
import { InstructorsList } from 'data/marketing/LandingCoursesData';
export const Team2Example = () => {
const title = 'Classes Taught by Industry Expert';
const subtitle = 'World-class Instructors';
const description = 'Geeks teachers are icons, experts, and industry rock stars excited to share their experience, wisdom, and trusted tools with you.';
return (
<section className="py-8 py-lg-16 bg-light-gradient-top bg-white">
<Container>
<SectionHeadingCenter title={title} description={description} subtitle={subtitle} />
<Row>
{InstructorsList.map((item, index) => (
<Col key={index} xl={3} lg={4} md={6} sm={12} className='d-xl-block' >
<InstructorCard item={item} />
</Col>
))}
</Row>
<Row>
<Col md={12} className="mt-3 text-center">
<Link to="#" className="btn btn-primary"> See All Instructors </Link>
</Col>
</Row>
</Container>
</section>
);
}
Buy Now