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

@@ -42,11 +42,13 @@ import { Badge } from "../components/ui/badge";
import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
import { AIStrategyTargetAudience } from "./AIStrategyConsulting";
// Custom ML Model Development Hero Section
const CustomMLHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -135,7 +137,7 @@ const CustomMLHeroWithCTA = () => {
>
<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">
<Brain className="w-5 h-5 flex-shrink-0" />
@@ -1126,6 +1128,7 @@ const CustomMLCaseStudies = () => {
// Mid-Page CTA
const CustomMLInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 bg-black">
<div className="container mx-auto px-6 lg:px-8">
@@ -1164,7 +1167,7 @@ const CustomMLInlineCTA = () => {
<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" />
@@ -1431,6 +1434,7 @@ const CustomMLFAQs = () => {
// Final CTA Section
const CustomMLFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1483,7 +1487,7 @@ const CustomMLFinalCTA = () => {
>
<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">
<Brain className="w-6 h-6 flex-shrink-0" />
@@ -1513,7 +1517,7 @@ const CustomMLFinalCTA = () => {
export const CustomMLModelDevelopment = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1525,6 +1529,11 @@ export const CustomMLModelDevelopment = () => {
<CustomMLBenefits />
</section>
{/* Tech Stack */}
<section className="bg-card">
<CustomMLTechStack />
</section>
{/* Development Process */}
<section className="bg-card">
<CustomMLDevelopmentProcess />
@@ -1535,9 +1544,9 @@ export const CustomMLModelDevelopment = () => {
<CustomMLServices />
</section>
{/* Tech Stack */}
{/* Target Audience */}
<section className="bg-card">
<CustomMLTechStack />
<AIStrategyTargetAudience />
</section>
{/* Case Studies */}
@@ -1567,7 +1576,7 @@ export const CustomMLModelDevelopment = () => {
{/* Footer */}
<section className="bg-card">
<Footer />
{/* <Footer /> */}
</section>
</div>
);