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

@@ -23,8 +23,8 @@ import {
Users,
Award,
} from "lucide-react";
import { navigateTo } from "../App";
import { Helmet } from "react-helmet-async";
import { useNavigate } from "react-router-dom";
export const ClientTestimonials = () => {
const [selectedIndustry, setSelectedIndustry] = useState("all");
@@ -387,9 +387,11 @@ export const ClientTestimonials = () => {
return icons[industry as keyof typeof icons] || Building2;
};
const navigate = useNavigate();
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="pt-24 pb-16 bg-background">
@@ -735,7 +737,7 @@ export const ClientTestimonials = () => {
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
Become Our Next Success Story
<ArrowRight className="ml-2 w-4 h-4" />
@@ -752,7 +754,7 @@ export const ClientTestimonials = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};