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

@@ -7,8 +7,8 @@ import { Card, CardContent } from "../components/ui/card";
import { Avatar, AvatarFallback, AvatarImage } from "../components/ui/avatar";
import { Separator } from "../components/ui/separator";
import { Calendar, Clock, User, ArrowRight, Share2, Linkedin, Twitter, ExternalLink, Tag } from "lucide-react";
import { navigateTo } from "../App";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { useNavigate } from "react-router-dom";
const articleData = {
id: "ux-review-presentations",
@@ -125,9 +125,11 @@ export const UXReviewPresentations = () => {
}
};
const navigate = useNavigate();
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="pt-24 pb-16 bg-background">
@@ -135,11 +137,11 @@ export const UXReviewPresentations = () => {
<div className="max-w-4xl mx-auto">
{/* Breadcrumb */}
<div className="flex items-center gap-2 text-sm text-muted-foreground mb-8">
<button onClick={() => navigateTo('/')} className="hover:text-white transition-colors">
<button onClick={() => navigate('/')} className="hover:text-white transition-colors">
Home
</button>
<span>/</span>
<button onClick={() => navigateTo('/resources/blog')} className="hover:text-white transition-colors">
<button onClick={() => navigate('/resources/blog')} className="hover:text-white transition-colors">
Insights
</button>
<span>/</span>
@@ -306,7 +308,7 @@ export const UXReviewPresentations = () => {
<div
key={article.id}
className="group cursor-pointer"
onClick={() => navigateTo(`/insights/${article.id}`)}
onClick={() => navigate(`/insights/${article.id}`)}
>
<div className="aspect-[16/10] overflow-hidden rounded-lg mb-3">
<ImageWithFallback
@@ -332,7 +334,7 @@ export const UXReviewPresentations = () => {
<Button
variant="outline"
className="w-full border-white/20 text-white hover:bg-white/10"
onClick={() => navigateTo('/resources/blog')}
onClick={() => navigate('/resources/blog')}
>
View All Insights
<ArrowRight className="w-4 h-4 ml-2" />
@@ -350,7 +352,7 @@ export const UXReviewPresentations = () => {
</p>
<Button
className="w-full bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
onClick={() => navigateTo('/contact')}
onClick={() => navigate('/contact')}
>
Get In Touch
</Button>
@@ -377,7 +379,7 @@ export const UXReviewPresentations = () => {
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
onClick={() => navigateTo('/contact')}
onClick={() => navigate('/contact')}
>
Start Your Project
<ArrowRight className="ml-2 w-4 h-4" />
@@ -386,7 +388,7 @@ export const UXReviewPresentations = () => {
size="lg"
variant="outline"
className="border-white/20 text-white hover:bg-white/10"
onClick={() => navigateTo('/resources/blog')}
onClick={() => navigate('/resources/blog')}
>
Read More Insights
</Button>
@@ -396,7 +398,7 @@ export const UXReviewPresentations = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};