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

@@ -38,12 +38,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 awsLogo from "../src/images/aws-logo.png";
import { Helmet } from "react-helmet-async";
// SaaS Product Engineering Hero Section
const SaaSHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -134,7 +135,7 @@ const SaaSHeroWithCTA = () => {
>
<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">
<Rocket className="w-5 h-5 flex-shrink-0" />
@@ -1238,6 +1239,7 @@ const SaaSCaseStudies = () => {
// Mid-Page CTA
const SaaSInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1275,7 +1277,7 @@ const SaaSInlineCTA = () => {
<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" />
@@ -1340,6 +1342,7 @@ const HireSaaSDevelopers = () => {
],
},
];
const navigate = useNavigate();
return (
<section className="py-32 bg-black">
@@ -1422,7 +1425,7 @@ const HireSaaSDevelopers = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/saas-product-developers")}
onClick={() => navigate("/hire-talent/saas-product-developers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1520,6 +1523,7 @@ const SaaSFAQs = () => {
// Final CTA Section
const SaaSFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1572,7 +1576,7 @@ const SaaSFinalCTA = () => {
>
<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" />
@@ -1601,7 +1605,7 @@ const SaaSFinalCTA = () => {
export const SaaSProductEngineering = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1613,6 +1617,11 @@ export const SaaSProductEngineering = () => {
<SaaSBenefits />
</section>
{/* Case Studies */}
<section className="bg-background">
<SaaSCaseStudies />
</section>
{/* Development Process */}
<section className="bg-card">
<SaaSProcess />
@@ -1628,15 +1637,10 @@ export const SaaSProductEngineering = () => {
<SaaSTechStack />
</section>
{/* Case Studies */}
<section className="bg-background">
<SaaSCaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<SaaSInlineCTA />
</section>
</section> */}
{/* Hire Developers */}
<section className="bg-background">
@@ -1644,9 +1648,9 @@ export const SaaSProductEngineering = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<SaaSFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1654,8 +1658,8 @@ export const SaaSProductEngineering = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);