Almost updated

This commit is contained in:
mukesh13
2025-08-13 20:21:20 +05:30
parent c6629e4daa
commit a286215d0f
31 changed files with 1163 additions and 665 deletions

View File

@ -1,56 +1,62 @@
// CareerPage Component
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 Footer3 from "@/components/footers/Footer3";
import Header4 from "@/components/headers/Header4";
import Careerform from "@/components/common/Careerform";
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",
title: "Career || Keystone Solutions",
description:
"Advitex - Finance and Business Consulting React Nextjs Template",
"Join our team at Keystone Solutions and build your career in business process outsourcing and data solutions",
};
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">
<div className="primary-3 bg-color-1">
<div className="wrap-page-header">
<Header4 />
{/* Page Title Section */}
<section className="page-title tf-spacing-47 bg-color-1">
<div className="tf-container">
<div className="row">
<div className="col-12">
{/* Breadcrumb */}
<div className="breadcrumb-trail mb-3">
<Link href="/" className="home-link text-body-2 text-dark">
Home
</Link>
</li>
<li>Career</li>
</ul>
<span className="separator text-body-2 mx-2">&gt;</span>
<span className="current-page text-body-2 text-primary">Career</span>
</div>
{/* Page Title */}
{/* Page Title */}
<div className="page-title-content">
<h1 className="page-title-main display-4 mb-3">
Career
</h1>
<p className="page-subtitle text-body-1 mb-0">
Join our team to take on meaningful challenges, grow your skills, and make an impact.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div className="main-content">
<Careerform />
</div>
</div>
<div className="main-content style-1">
<Benefits />
<Oppertunities />
<Contact />
</div>
<Footer1 />
<Footer3 />
</>
);
}