Initial Commit
This commit is contained in:
52
app/(otherPages)/404/page.jsx
Normal file
52
app/(otherPages)/404/page.jsx
Normal file
@ -0,0 +1,52 @@
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Not Found Page || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function NotFoundPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="error-404">
|
||||
<div className="contnet">
|
||||
<div className="img">
|
||||
<Image
|
||||
alt={404}
|
||||
src="/images/item/404.png"
|
||||
width={609}
|
||||
height={240}
|
||||
/>
|
||||
</div>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
We apologize, but the page you're looking for couldn't be found!
|
||||
</p>
|
||||
<Link href={`/`} className="tf-btn mx-auto">
|
||||
<span>Back To Home</span>
|
||||
<span className="bg-effect" />
|
||||
</Link>
|
||||
</div>
|
||||
<div className="item position-absolute">
|
||||
<Image
|
||||
alt="shape"
|
||||
src="/images/item/shape-5.png"
|
||||
width={1105}
|
||||
height={720}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
61
app/(otherPages)/about/page.jsx
Normal file
61
app/(otherPages)/about/page.jsx
Normal file
@ -0,0 +1,61 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
import Testimonials from "@/components/common/Testimonials";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import About from "@/components/otherPages/About";
|
||||
import Process from "@/components/otherPages/Process";
|
||||
import Team from "@/components/otherPages/Team";
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
export const metadata = {
|
||||
title:
|
||||
"About || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_16 letter-spacing-1">
|
||||
Play a key role in <br />
|
||||
business advancement
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Promote innovation by introducing breakthrough ideas and
|
||||
technologies <br />
|
||||
to improve business and customer experience.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>About us</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<About />
|
||||
<Team />
|
||||
<Process />
|
||||
<Testimonials />
|
||||
<Faqs parentClass="section-faqs style-1 tf-spacing-8" />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
52
app/(otherPages)/blog/page.jsx
Normal file
52
app/(otherPages)/blog/page.jsx
Normal file
@ -0,0 +1,52 @@
|
||||
import Link from "next/link";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Blogs from "@/components/otherPages/Blogs";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Blog || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
import React from "react";
|
||||
|
||||
export default function BlogPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default v6">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_25 letter-spacing-1">
|
||||
Insights From Our Press
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Entrepreneurs and business leaders face barriers that can
|
||||
restrain growth and profit. Understanding and <br />
|
||||
implementing effective strategies is the key to overcoming
|
||||
obstacles and promoting your business towards success.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Blog</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Blogs />
|
||||
</div>
|
||||
<Footer1 parentClass="footer style-default has-border-top" />
|
||||
</>
|
||||
);
|
||||
}
|
||||
56
app/(otherPages)/career/page.jsx
Normal file
56
app/(otherPages)/career/page.jsx
Normal file
@ -0,0 +1,56 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Benefits from "@/components/otherPages/Benefits";
|
||||
import Oppertunities from "@/components/otherPages/Oppertunities";
|
||||
import Link from "next/link";
|
||||
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Career || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function CareerPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_18 letter-spacing-1">Career</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
A typical day is a mix of strategic thinking,
|
||||
problem-solving, and client interaction. The work is
|
||||
demanding <br />
|
||||
but rewarding, offering opportunities to tackle complex
|
||||
challenges and drive positive change.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Career</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Benefits />
|
||||
<Oppertunities />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
89
app/(otherPages)/coming-soon/page.jsx
Normal file
89
app/(otherPages)/coming-soon/page.jsx
Normal file
@ -0,0 +1,89 @@
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
import Newsletter from "@/components/otherPages/Newsletter";
|
||||
import CountdownTimer from "@/components/common/Countdown";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Comming Soon || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function ComingSoonPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header overflow-hidden">
|
||||
{/* header */}
|
||||
<header id="header-main" className="header style-default">
|
||||
<div className="header-inner">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="header-inner-wrap justify-content-end">
|
||||
<div className="header-right d-flex align-items-center">
|
||||
<Link href={`/about`} className="tf-btn btn-white">
|
||||
<span>More Info</span>
|
||||
<span className="bg-effect" />
|
||||
</Link>
|
||||
<Link href={`/contact-us`} className="tf-btn">
|
||||
<span>Contact Us</span>
|
||||
<span className="bg-effect" />
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
{/* /header */}
|
||||
{/* .page-title */}
|
||||
<div className="page-title style-default v3">
|
||||
<div className="coming-soon">
|
||||
<div className="contnet">
|
||||
<div className="tf-countdown-lg">
|
||||
<div
|
||||
className="js-countdown"
|
||||
data-timer={102738}
|
||||
data-labels="Days,Hours,Minute,Second"
|
||||
>
|
||||
<CountdownTimer style={2} />
|
||||
</div>
|
||||
</div>
|
||||
<h2 className="mb_21">Before we unveil our new website.</h2>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Is part of innovation. We are on the verge of launching a
|
||||
revolutionary foundation that revolutionize the industry. <br />
|
||||
Join us when we pave the way for the future.
|
||||
</p>
|
||||
<Newsletter />
|
||||
<ul className="social d-flex gap_8 justify-content-center">
|
||||
<li className="text_primary">
|
||||
<a href="#" className="link-black icon-twitter-x" />
|
||||
</li>
|
||||
<li className="text_primary">
|
||||
<a href="#" className="link-black icon-facebook-f" />
|
||||
</li>
|
||||
<li className="text_primary">
|
||||
<a href="#" className="link-black icon-github" />
|
||||
</li>
|
||||
<li className="text_primary">
|
||||
<a href="#" className="link-black icon-instagram" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="item position-absolute">
|
||||
<Image
|
||||
alt="shape"
|
||||
src="/images/item/shape-5.png"
|
||||
width={1105}
|
||||
height={720}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.page-title */}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
27
app/(otherPages)/contact-us/page.jsx
Normal file
27
app/(otherPages)/contact-us/page.jsx
Normal file
@ -0,0 +1,27 @@
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Contact from "@/components/otherPages/Contact";
|
||||
import OfficeLocations from "@/components/otherPages/OfficeLocations";
|
||||
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Contact Us || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function ContactUsPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
|
||||
<Contact />
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<OfficeLocations />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
56
app/(otherPages)/faqs/page.jsx
Normal file
56
app/(otherPages)/faqs/page.jsx
Normal file
@ -0,0 +1,56 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Link from "next/link";
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Faqs || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function FaqsPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_49 text-center">
|
||||
<h1 className="text_black mb_19 letter-spacing-1">FAQs</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Our holistic approach combines a comprehensive suite of
|
||||
integrated services and <br />
|
||||
solutions to deliver maximum value and optimize your
|
||||
operations.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb justify-content-center">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>FAQs</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Faqs
|
||||
headingClass="heading-title"
|
||||
parentClass="section-faqs style-1 tf-spacing-8"
|
||||
header2
|
||||
/>
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
57
app/(otherPages)/portfolio/page.jsx
Normal file
57
app/(otherPages)/portfolio/page.jsx
Normal file
@ -0,0 +1,57 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
import Link from "next/link";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Portfolio from "@/components/otherPages/Portfolio";
|
||||
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Portfolio || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_18 letter-spacing-1">
|
||||
A deep diving into <br />
|
||||
the success of Advitex
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
A deep dive into Advitex's success reveals a compelling case
|
||||
study of innovation, strategic partnerships, <br />
|
||||
and customer commitment, leading to significant market
|
||||
growth and industry recognition.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Case Studie</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Portfolio />
|
||||
<Faqs parentClass="section-faqs style-1 tf-spacing-8 pt-0" />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
56
app/(otherPages)/pricing/page.jsx
Normal file
56
app/(otherPages)/pricing/page.jsx
Normal file
@ -0,0 +1,56 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
import Link from "next/link";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Pricing from "@/components/common/Pricing";
|
||||
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Pricing || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_18 letter-spacing-1">
|
||||
Pricing Plan
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
his focuses on achieving tangible outcomes, such as
|
||||
increased revenue, cost savings, <br />
|
||||
or improved efficiency, and ultimately driving
|
||||
organizational success.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Pricing</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Pricing />
|
||||
<Faqs parentClass="section-faqs style-1 tf-spacing-8 pt-0" />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
57
app/(otherPages)/single-post/[id]/page.jsx
Normal file
57
app/(otherPages)/single-post/[id]/page.jsx
Normal file
@ -0,0 +1,57 @@
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import BlogDetails from "@/components/otherPages/BlogDetails";
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
import { allBlogs } from "@/data/blogs";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Single Post || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
|
||||
export default async function BlogDetailsPage1({ params }) {
|
||||
const { id } = await params;
|
||||
|
||||
const blog = allBlogs.filter((p) => p.id == id)[0] || allBlogs[0];
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default v2">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_53">
|
||||
<h1 className="text_black mb_25 letter-spacing-1">
|
||||
{blog.title}
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Entrepreneurs and business leaders face barriers that can
|
||||
restrain growth and profit. Understanding and <br />
|
||||
implementing effective strategies is the key to overcoming
|
||||
obstacles and promoting your business towards success.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Single Post</li>
|
||||
<li>{blog.title}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<BlogDetails />
|
||||
</div>
|
||||
<Footer1 parentClass="footer style-default has-border-top" />
|
||||
</>
|
||||
);
|
||||
}
|
||||
66
app/(otherPages)/single-project/[id]/page.jsx
Normal file
66
app/(otherPages)/single-project/[id]/page.jsx
Normal file
@ -0,0 +1,66 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
import Testimonials from "@/components/common/Testimonials";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import PortfolioSingle from "@/components/otherPages/PortfolioSingle";
|
||||
|
||||
import { allCaseStudies } from "@/data/caseStudies";
|
||||
import Link from "next/link";
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Single Prroject || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default async function SingleProjectPage({ params }) {
|
||||
const { id } = await params;
|
||||
|
||||
const caseStudy =
|
||||
allCaseStudies.filter((p) => p.id == id)[0] || allCaseStudies[0];
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_18 letter-spacing-1">
|
||||
{caseStudy.title.split(" ").slice(0, 4)} <br />
|
||||
{caseStudy.title.split(" ").slice(4, 10)}
|
||||
<br />
|
||||
{caseStudy.title.split(" ").slice(10)}
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
Our holistic approach combines a comprehensive suite of
|
||||
integrated services and <br />
|
||||
solutions to deliver maximum value and optimize your
|
||||
operations.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Project Details</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<PortfolioSingle />
|
||||
<Testimonials />
|
||||
<Faqs parentClass="section-faqs style-1 tf-spacing-8" />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
55
app/(otherPages)/team/page.jsx
Normal file
55
app/(otherPages)/team/page.jsx
Normal file
@ -0,0 +1,55 @@
|
||||
import Contact from "@/components/common/Contact";
|
||||
import Faqs from "@/components/common/Faqs";
|
||||
import Link from "next/link";
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import Team2 from "@/components/otherPages/Team2";
|
||||
import React from "react";
|
||||
export const metadata = {
|
||||
title:
|
||||
"Team || Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
description:
|
||||
"Advitex - Finance and Business Consulting React Nextjs Template",
|
||||
};
|
||||
export default function TeamPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="wrap-page-header">
|
||||
<Header1 />
|
||||
<div className="page-title style-default">
|
||||
<div className="tf-container">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<div className="heading mb_51">
|
||||
<h1 className="text_black mb_17 letter-spacing-1">
|
||||
Get To Know Our Amazing Team
|
||||
</h1>
|
||||
<p className="sub-heading text_mono-gray-7">
|
||||
With a passion for innovation and a dedication to
|
||||
excellence, we bring diverse <br />
|
||||
expertise to every project we undertake.
|
||||
</p>
|
||||
</div>
|
||||
<ul className="breadcrumb">
|
||||
<li>
|
||||
<Link href={`/`} className="link">
|
||||
Home
|
||||
</Link>
|
||||
</li>
|
||||
<li>Our Team</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="main-content style-1">
|
||||
<Team2 />
|
||||
|
||||
<Faqs parentClass="section-faqs style-1 tf-spacing-8" />
|
||||
<Contact />
|
||||
</div>
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user