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,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";
// Clickable Prototypes Hero Section
const PrototypesHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -136,7 +137,7 @@ const PrototypesHeroWithCTA = () => {
>
<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">
<PlayCircle className="w-5 h-5 flex-shrink-0" />
@@ -1031,6 +1032,7 @@ const PrototypingCaseStudies = () => {
// Mid-Page CTA
const PrototypingInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1069,7 +1071,7 @@ const PrototypingInlineCTA = () => {
<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" />
@@ -1085,6 +1087,7 @@ const PrototypingInlineCTA = () => {
// Hire UI/UX Designers for Prototypes
const HirePrototypeDesigners = () => {
const navigate = useNavigate();
const designerTypes = [
{
title: "Prototype Specialists",
@@ -1235,7 +1238,7 @@ const HirePrototypeDesigners = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/clickable-prototypes-developers")}
onClick={() => navigate("/hire-talent/clickable-prototypes-developers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1333,6 +1336,7 @@ const PrototypingFAQs = () => {
// Final CTA Section
const PrototypingFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1385,7 +1389,7 @@ const PrototypingFinalCTA = () => {
>
<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" />
@@ -1414,7 +1418,7 @@ const PrototypingFinalCTA = () => {
export const ClickablePrototypes = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1426,6 +1430,11 @@ export const ClickablePrototypes = () => {
<PrototypeBenefits />
</section>
{/* Case Studies */}
<section className="bg-background">
<PrototypingCaseStudies />
</section>
{/* Prototyping Process */}
<section className="bg-card">
<PrototypingProcess />
@@ -1441,15 +1450,10 @@ export const ClickablePrototypes = () => {
<PrototypingTools />
</section>
{/* Case Studies */}
<section className="bg-background">
<PrototypingCaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<PrototypingInlineCTA />
</section>
</section> */}
{/* Hire Designers */}
<section className="bg-background">
@@ -1457,9 +1461,9 @@ export const ClickablePrototypes = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<PrototypingFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1467,8 +1471,8 @@ export const ClickablePrototypes = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);