All changes, done like fully react router uses, services, al/ml and solution page section alignment and missing section done!

This commit is contained in:
priyanshuvish
2025-09-23 20:13:31 +05:30
parent 5f5ddb1cd6
commit e78c8672e9
158 changed files with 2444 additions and 2093 deletions

View File

@@ -18,12 +18,13 @@ import {
Star,
Layers,
} from "lucide-react";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner";
import { DeveloperSkillsVector } from "@/components/vectors";
export const HireFullStackDevelopers = () => {
const navigate = useNavigate();
const expertise = [
{
category: "Frontend Technologies",
@@ -157,7 +158,7 @@ export const HireFullStackDevelopers = () => {
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
<Helmet>
{/* Page Title and Meta Description */}
@@ -434,7 +435,7 @@ export const HireFullStackDevelopers = () => {
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
Start Your Project
<ArrowRight className="ml-2 w-4 h-4" />
@@ -451,7 +452,7 @@ export const HireFullStackDevelopers = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};