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

@@ -45,11 +45,12 @@ import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import iotDeviceImage from "../src/images/iot-device.webp";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
// API & Backend Development Hero Section
const APIHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -139,7 +140,7 @@ const APIHeroWithCTA = () => {
>
<ShimmerButton
className="text-lg px-8 py-4"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-2">
<Server className="w-5 h-5 flex-shrink-0" />
@@ -1397,6 +1398,7 @@ const APICaseStudies = () => {
// Mid-Page CTA
const APIInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1435,7 +1437,7 @@ const APIInlineCTA = () => {
<ShimmerButton
className="text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-3">
<MessageSquare className="w-6 h-6 flex-shrink-0" />
@@ -1451,6 +1453,7 @@ const APIInlineCTA = () => {
// Hire Backend Developers
const HireBackendDevelopers = () => {
const navigate = useNavigate();
const developerTypes = [
{
title: "Node.js Developers",
@@ -1581,7 +1584,7 @@ const HireBackendDevelopers = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/api-backend-developers")}
onClick={() => navigate("/hire-talent/api-backend-developers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1678,6 +1681,7 @@ const APIFAQs = () => {
// Final CTA Section
const APIFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1730,7 +1734,7 @@ const APIFinalCTA = () => {
>
<ShimmerButton
className="px-12 py-6 text-xl rounded-2xl shadow-2xl hover:shadow-accent/25"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-3">
<Rocket className="w-6 h-6 flex-shrink-0" />
@@ -1760,7 +1764,7 @@ const APIFinalCTA = () => {
export const APIBackendDevelopment = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1772,6 +1776,11 @@ export const APIBackendDevelopment = () => {
<APIBenefits />
</section>
{/* Case Studies */}
<section className="bg-background">
<APICaseStudies />
</section>
{/* Development Process */}
<section className="bg-card">
<APIProcess />
@@ -1787,15 +1796,10 @@ export const APIBackendDevelopment = () => {
<APITechStack />
</section>
{/* Case Studies */}
<section className="bg-background">
<APICaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<APIInlineCTA />
</section>
</section> */}
{/* Hire Developers */}
<section className="bg-background">
@@ -1803,9 +1807,9 @@ export const APIBackendDevelopment = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<APIFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1813,8 +1817,8 @@ export const APIBackendDevelopment = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);