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

@@ -39,11 +39,12 @@ 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";
// UI/UX Design Hero Section
const UIUXHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -133,7 +134,7 @@ const UIUXHeroWithCTA = () => {
>
<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">
<Palette className="w-5 h-5 flex-shrink-0" />
@@ -992,6 +993,7 @@ const DesignToolsMethodologies = () => {
// Mid-Page CTA
const UIUXInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1030,7 +1032,7 @@ const UIUXInlineCTA = () => {
<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">
<MessageCircle className="w-6 h-6 flex-shrink-0" />
@@ -1105,6 +1107,8 @@ const HireUIUXDesigners = () => {
},
];
const navigate = useNavigate();
return (
<section className="py-32 bg-black">
<div className="container mx-auto px-6 lg:px-8">
@@ -1186,7 +1190,7 @@ const HireUIUXDesigners = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/ui-ux-designers")}
onClick={() => navigate("/hire-talent/ui-ux-designers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1283,6 +1287,7 @@ const UIUXFAQs = () => {
// Final CTA Section
const UIUXFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1335,7 +1340,7 @@ const UIUXFinalCTA = () => {
>
<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" />
@@ -1364,7 +1369,7 @@ const UIUXFinalCTA = () => {
export const UIUXDesign = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1376,6 +1381,11 @@ export const UIUXDesign = () => {
<UIUXBenefits />
</section>
{/* Featured Case Studies - NEW SECTION */}
<section id="case-studies" className="bg-background">
<FeaturedCaseStudies />
</section>
{/* Design Process */}
<section className="bg-card">
<UIUXDesignProcess />
@@ -1391,15 +1401,10 @@ export const UIUXDesign = () => {
<DesignToolsMethodologies />
</section>
{/* Featured Case Studies - NEW SECTION */}
<section id="case-studies" className="bg-background">
<FeaturedCaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<UIUXInlineCTA />
</section>
</section> */}
{/* Hire Designers */}
<section className="bg-background">
@@ -1407,9 +1412,9 @@ export const UIUXDesign = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<UIUXFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1417,8 +1422,8 @@ export const UIUXDesign = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);