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

@@ -47,11 +47,12 @@ import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import multiVendorImage from "../src/images/multifood.webp";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
// eCommerce Platforms Hero Section
const EcommerceHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -141,7 +142,7 @@ const EcommerceHeroWithCTA = () => {
>
<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">
<Store className="w-5 h-5 flex-shrink-0" />
@@ -1192,6 +1193,7 @@ const EcommerceCaseStudies = () => {
// Mid-Page CTA
const EcommerceInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1230,7 +1232,7 @@ const EcommerceInlineCTA = () => {
<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" />
@@ -1246,6 +1248,7 @@ const EcommerceInlineCTA = () => {
// Hire eCommerce Developers
const HireEcommerceDevelopers = () => {
const navigate = useNavigate();
const developerTypes = [
{
title: "Shopify Experts",
@@ -1374,7 +1377,7 @@ const HireEcommerceDevelopers = () => {
>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<ShimmerButton className="text-lg px-8 py-4"
onClick={() => navigateTo("/hire-talent/ecommerce-platform-developers")}
onClick={() => navigate("/hire-talent/ecommerce-platform-developers")}
>
<div className="inline-flex items-center gap-2">
<Users className="w-5 h-5 flex-shrink-0" />
@@ -1471,6 +1474,7 @@ const EcommerceFAQs = () => {
// Final CTA Section
const EcommerceFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1523,7 +1527,7 @@ const EcommerceFinalCTA = () => {
>
<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" />
@@ -1552,7 +1556,7 @@ const EcommerceFinalCTA = () => {
export const EcommercePlatforms = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1564,6 +1568,11 @@ export const EcommercePlatforms = () => {
<EcommerceBenefits />
</section>
{/* Case Studies */}
<section className="bg-background">
<EcommerceCaseStudies />
</section>
{/* Development Process */}
<section className="bg-card">
<EcommerceProcess />
@@ -1579,15 +1588,10 @@ export const EcommercePlatforms = () => {
<EcommerceTechStack />
</section>
{/* Case Studies */}
<section className="bg-background">
<EcommerceCaseStudies />
</section>
{/* Mid-Page CTA */}
<section className="bg-card">
{/* <section className="bg-card">
<EcommerceInlineCTA />
</section>
</section> */}
{/* Hire Developers */}
<section className="bg-background">
@@ -1595,9 +1599,9 @@ export const EcommercePlatforms = () => {
</section>
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<EcommerceFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1605,8 +1609,8 @@ export const EcommercePlatforms = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);