122 lines
4.1 KiB
React
122 lines
4.1 KiB
React
import React from "react";
|
||
|
||
import Header from "../../../components/header/Header";
|
||
import Footer from "../../../components/footer/Footer";
|
||
import CopyRight from "../../../components/footer/CopyRight";
|
||
import Link from "next/link";
|
||
import TeamTwo from "../../../components/team/TeamTwo";
|
||
import Image from "next/image";
|
||
export const metadata = {
|
||
title: 'Team V2 || Deski-Saas & Software Nextjs Template',
|
||
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
|
||
}
|
||
const Team2 = () => {
|
||
return (
|
||
<div className="main-page-wrapper p0">
|
||
|
||
{/* End Page SEO Content */}
|
||
|
||
<Header />
|
||
{/* End Header */}
|
||
|
||
{/* =============================================
|
||
Fancy Hero Two
|
||
============================================== */}
|
||
<div className="fancy-hero-five bg-white">
|
||
<Image width="286" height="426"
|
||
src="/images/shape/95.svg"
|
||
alt="shape"
|
||
className="shapes shape-one"
|
||
/>
|
||
<Image width="286" height="426"
|
||
src="/images/shape/96.svg"
|
||
alt="shape"
|
||
className="shapes shape-two"
|
||
/>
|
||
<div className="bg-wrapper">
|
||
<div className="container">
|
||
<div className="col-xl-9 col-lg-11 m-auto text-center">
|
||
<h6 className="page-title">Our Team</h6>
|
||
<h1 className="heading">
|
||
<span>
|
||
We’ve Most Talented
|
||
<Image width={577} height={58} src="/images/shape/line-shape-11.svg" alt="image" />
|
||
</span>
|
||
Team Members
|
||
</h1>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{/* /.bg-wrapper */}
|
||
</div>
|
||
{/* /.fancy-hero-two */}
|
||
|
||
{/* =====================================================
|
||
Team Section Five
|
||
===================================================== */}
|
||
<div className="team-section-five ">
|
||
<div className="container">
|
||
<div className="row">
|
||
<TeamTwo />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{/* /.team-section-five */}
|
||
|
||
{/* =====================================================
|
||
Fancy Short Banner Eleven
|
||
===================================================== */}
|
||
<div className="fancy-short-banner-eleven">
|
||
<div className="container">
|
||
<div className="border-bottom pt-130 pb-150 md-pt-80 md-pb-80">
|
||
<div className="row">
|
||
<div className="col-lg-8 col-md-9 m-auto">
|
||
<h2
|
||
className="font-rubik"
|
||
data-aos="fade-up"
|
||
data-aos-duration="1200"
|
||
>
|
||
Want to be a part of our talented team?
|
||
</h2>
|
||
<Link
|
||
className="theme-btn-one btn-lg mt-50 md-mt-30"
|
||
data-aos="fade-up"
|
||
data-aos-duration="1200"
|
||
data-aos-delay="100"
|
||
href="/contact-pm"
|
||
>
|
||
SEND YOUR CV
|
||
</Link>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{/* /.fancy-short-banner-eleven */}
|
||
|
||
{/* =====================================================
|
||
Footer Style One
|
||
===================================================== */}
|
||
<footer className="theme-footer-one pt-130 md-pt-70">
|
||
<div className="top-footer">
|
||
<div className="container">
|
||
<Footer />
|
||
</div>
|
||
{/* /.container */}
|
||
</div>
|
||
{/* /.top-footer */}
|
||
|
||
<div className="container">
|
||
<div className="bottom-footer-content">
|
||
<CopyRight />
|
||
</div>
|
||
{/* /.bottom-footer */}
|
||
</div>
|
||
</footer>
|
||
{/* /.theme-footer-one */}
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default Team2;
|