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:
@@ -42,11 +42,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";
|
||||
|
||||
// Design Thinking Workshops Hero Section
|
||||
const WorkshopsHeroWithCTA = () => {
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<section className="relative py-20 overflow-hidden bg-black">
|
||||
<Helmet>
|
||||
@@ -137,7 +138,7 @@ const WorkshopsHeroWithCTA = () => {
|
||||
>
|
||||
<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">
|
||||
<Calendar className="w-5 h-5 flex-shrink-0" />
|
||||
@@ -914,6 +915,7 @@ const TargetAudience = () => {
|
||||
|
||||
// Workshop Case Studies
|
||||
const WorkshopCaseStudies = () => {
|
||||
const navigate = useNavigate();
|
||||
const caseStudies = [
|
||||
{
|
||||
title: "FinTech Product Strategy Workshop",
|
||||
@@ -1050,6 +1052,7 @@ const WorkshopCaseStudies = () => {
|
||||
|
||||
// Mid-Page CTA
|
||||
const WorkshopInlineCTA = () => {
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<section className="py-20 bg-black">
|
||||
<div className="container mx-auto px-6 lg:px-8">
|
||||
@@ -1088,7 +1091,7 @@ const WorkshopInlineCTA = () => {
|
||||
|
||||
<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">
|
||||
<Send className="w-6 h-6 flex-shrink-0" />
|
||||
@@ -1104,6 +1107,7 @@ const WorkshopInlineCTA = () => {
|
||||
|
||||
// Hire Design Thinking Facilitators
|
||||
const HireFacilitators = () => {
|
||||
const navigate = useNavigate();
|
||||
const facilitatorTypes = [
|
||||
{
|
||||
title: "Senior UX Strategists",
|
||||
@@ -1254,7 +1258,7 @@ const HireFacilitators = () => {
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/design-thinking-workshops-developers")}
|
||||
onClick={() => navigate("/hire-talent/design-thinking-workshops-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
@@ -1351,6 +1355,7 @@ const WorkshopFAQs = () => {
|
||||
|
||||
// Final CTA Section
|
||||
const WorkshopFinalCTA = () => {
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<section className="py-20 relative overflow-hidden">
|
||||
<div className="container mx-auto px-6 lg:px-8 relative z-10">
|
||||
@@ -1403,7 +1408,7 @@ const WorkshopFinalCTA = () => {
|
||||
>
|
||||
<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">
|
||||
<Users className="w-6 h-6 flex-shrink-0" />
|
||||
@@ -1433,7 +1438,7 @@ const WorkshopFinalCTA = () => {
|
||||
export const DesignThinkingWorkshops = () => {
|
||||
return (
|
||||
<div className="dark min-h-screen">
|
||||
<Navigation />
|
||||
{/* <Navigation /> */}
|
||||
|
||||
{/* Hero Section */}
|
||||
<section className="bg-black">
|
||||
@@ -1441,12 +1446,17 @@ export const DesignThinkingWorkshops = () => {
|
||||
</section>
|
||||
|
||||
{/* Benefits */}
|
||||
<section className="bg-background">
|
||||
<section className="bg-card">
|
||||
<WorkshopBenefits />
|
||||
</section>
|
||||
|
||||
{/* Case Studies */}
|
||||
<section className="bg-background">
|
||||
<WorkshopCaseStudies />
|
||||
</section>
|
||||
|
||||
{/* Design Thinking Approach */}
|
||||
<section className="bg-card">
|
||||
<section className="bg-background">
|
||||
<DesignThinkingApproach />
|
||||
</section>
|
||||
|
||||
@@ -1460,15 +1470,10 @@ export const DesignThinkingWorkshops = () => {
|
||||
<TargetAudience />
|
||||
</section>
|
||||
|
||||
{/* Case Studies */}
|
||||
<section className="bg-background">
|
||||
<WorkshopCaseStudies />
|
||||
</section>
|
||||
|
||||
{/* Mid-Page CTA */}
|
||||
<section className="bg-card">
|
||||
{/* <section className="bg-card">
|
||||
<WorkshopInlineCTA />
|
||||
</section>
|
||||
</section> */}
|
||||
|
||||
{/* Hire Facilitators */}
|
||||
<section className="bg-background">
|
||||
@@ -1476,9 +1481,9 @@ export const DesignThinkingWorkshops = () => {
|
||||
</section>
|
||||
|
||||
{/* FAQs */}
|
||||
<section className="bg-card">
|
||||
{/* <section className="bg-card">
|
||||
<WorkshopFAQs />
|
||||
</section>
|
||||
</section> */}
|
||||
|
||||
{/* Final CTA */}
|
||||
<section className="bg-background">
|
||||
@@ -1486,8 +1491,8 @@ export const DesignThinkingWorkshops = () => {
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<section className="bg-card">
|
||||
<Footer />
|
||||
<section className="bg-background">
|
||||
{/* <Footer /> */}
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user