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

@@ -46,11 +46,12 @@ import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import awsLogo from "../src/images/aws-logo.png";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
// Enterprise Software Solutions Hero Section
const EnterpriseHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -141,7 +142,7 @@ const EnterpriseHeroWithCTA = () => {
>
<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">
<Building2 className="w-5 h-5 flex-shrink-0" />
@@ -1353,6 +1354,7 @@ const EnterpriseCaseStudies = () => {
// Mid-Page CTA
const EnterpriseInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1391,7 +1393,7 @@ const EnterpriseInlineCTA = () => {
<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" />
@@ -1407,6 +1409,7 @@ const EnterpriseInlineCTA = () => {
// Hire Enterprise Talent
const HireEnterpriseTalent = () => {
const navigate = useNavigate();
const talentTypes = [
{
title: "Enterprise Architects",
@@ -1542,7 +1545,7 @@ const HireEnterpriseTalent = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/enterprise-software-developers")}
onClick={() => navigate("/hire-talent/enterprise-software-developers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1641,6 +1644,7 @@ const EnterpriseFAQs = () => {
// Final CTA Section
const EnterpriseFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1693,7 +1697,7 @@ const EnterpriseFinalCTA = () => {
>
<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" />
@@ -1722,7 +1726,7 @@ const EnterpriseFinalCTA = () => {
export const EnterpriseSoftwareSolutions = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1734,6 +1738,11 @@ export const EnterpriseSoftwareSolutions = () => {
<EnterpriseBenefits />
</section>
{/* Case Studies */}
<section className="bg-background">
<EnterpriseCaseStudies />
</section>
{/* Development Process */}
<section className="bg-card">
<EnterpriseProcess />
@@ -1749,15 +1758,10 @@ export const EnterpriseSoftwareSolutions = () => {
<EnterpriseTechStack />
</section>
{/* Case Studies */}
<section className="bg-background">
<EnterpriseCaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<EnterpriseInlineCTA />
</section>
</section> */}
{/* Hire Talent */}
<section className="bg-background">
@@ -1765,9 +1769,9 @@ export const EnterpriseSoftwareSolutions = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<EnterpriseFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1776,7 +1780,7 @@ export const EnterpriseSoftwareSolutions = () => {
{/* Footer */}
<section>
<Footer />
{/* <Footer /> */}
</section>
</div>
);