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,15 +5,16 @@ import { Button } from "../components/ui/button";
import { Badge } from "../components/ui/badge";
import { Card, CardContent } from "../components/ui/card";
import { ArrowRight, Calendar, Users, Smartphone, Shield, Check, Star, TrendingUp, Heart, Bell, MapPin, User, Clock, Target, Zap, Database, Globe, Lock, Activity, AlertCircle } from "lucide-react";
import { navigateTo } from "../App";
import { useNavigate } from "react-router-dom";
// import simplitendImage from "figma:asset/b921f42de70695ee319496c3c3eee9a961c5297b.png";
const simplitendImage = "https://via.placeholder.com/600x600.png?text=SimpliTend+App+Image";
export const SimpliTendProject = () => {
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">
@@ -90,7 +91,7 @@ export const SimpliTendProject = () => {
<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 Healthcare App
<ArrowRight className="w-5 h-5 ml-2" />
@@ -99,7 +100,7 @@ export const SimpliTendProject = () => {
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>
@@ -608,7 +609,7 @@ export const SimpliTendProject = () => {
<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" />
@@ -617,7 +618,7 @@ export const SimpliTendProject = () => {
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>
@@ -626,7 +627,7 @@ export const SimpliTendProject = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};