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

@@ -5,13 +5,14 @@ import { Button } from "../components/ui/button";
import { Badge } from "../components/ui/badge";
import { Card, CardContent } from "../components/ui/card";
import { ArrowRight, Calendar, Users, Smartphone, Globe, Check, Star, TrendingUp, ShoppingBag, Brain, Zap, MessageCircle, Target, AlertCircle, Clock, DollarSign, Play, Shield, CreditCard } from "lucide-react";
import { navigateTo } from "../App";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { useNavigate } from "react-router-dom";
export const AmozProject = () => {
const navigate = useNavigate();
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="pt-24 pb-16 bg-background relative overflow-hidden">
@@ -88,7 +89,7 @@ export const AmozProject = () => {
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white font-manrope"
onClick={() => navigateTo('/start-a-project')}
onClick={() => navigate('/start-a-project')}
>
Build Your AI Commerce Platform
<ArrowRight className="w-5 h-5 ml-2" />
@@ -97,7 +98,7 @@ export const AmozProject = () => {
size="lg"
variant="outline"
className="border-white/20 text-white hover:bg-white/10 font-manrope"
onClick={() => navigateTo('/case-studies')}
onClick={() => navigate('/case-studies')}
>
View More Cases
</Button>
@@ -610,7 +611,7 @@ export const AmozProject = () => {
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white px-8 py-3 font-manrope"
onClick={() => navigateTo('/start-a-project')}
onClick={() => navigate('/start-a-project')}
>
Start Your Project
<ArrowRight className="w-5 h-5 ml-2" />
@@ -619,7 +620,7 @@ export const AmozProject = () => {
size="lg"
variant="outline"
className="border-white/20 text-white hover:bg-white/10 px-8 py-3 font-manrope"
onClick={() => navigateTo('/case-studies')}
onClick={() => navigate('/case-studies')}
>
View More Cases
</Button>
@@ -628,7 +629,7 @@ export const AmozProject = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};