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,8 +5,8 @@ import { Footer } from "../components/Footer";
import { Button } from "../components/ui/button";
import { GridPattern } from "../components/GridPattern";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { navigateTo } from "../App";
import tanamiImage from "../src/images/tanami.webp";
import { useNavigate } from "react-router-dom";
const projectMetrics = [
{
@@ -101,10 +101,12 @@ const processPhases = [
}
];
export const TanamiProject = () => {
const navigate = useNavigate();
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="relative pt-24 pb-16 bg-background overflow-hidden">
@@ -120,7 +122,7 @@ export const TanamiProject = () => {
>
<Button
variant="ghost"
onClick={() => navigateTo('/')}
onClick={() => navigate('/')}
className="text-muted-foreground hover:text-foreground flex items-center gap-2 px-0"
>
<ArrowLeft className="w-4 h-4" />
@@ -373,14 +375,14 @@ export const TanamiProject = () => {
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<Button
className="bg-accent hover:bg-accent/90 text-accent-foreground px-8 py-3 rounded-[10px]"
onClick={() => navigateTo('/start-a-project')}
onClick={() => navigate('/start-a-project')}
>
Start Your Project <ExternalLink className="w-4 h-4 ml-2" />
</Button>
<Button
variant="outline"
className="border-border hover:bg-muted px-8 py-3 rounded-[10px]"
onClick={() => navigateTo('/case-studies')}
onClick={() => navigate('/case-studies')}
>
View More Case Studies
</Button>
@@ -389,7 +391,7 @@ export const TanamiProject = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};