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,10 +5,10 @@ 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 { Badge } from "@/components/ui/badge";
import { Card, CardContent } from "@/components/ui/card";
import goodTimesLogo from "../src/images/good-times-logo.webp";
import { useNavigate } from "react-router-dom";
// Technology to icon mapping
const getTechIcon = (tech: string) => {
@@ -202,9 +202,10 @@ const futureRoadmap = [
];
export const GoodTimesProject = () => {
const navigate = useNavigate();
return (
<div className="dark min-h-screen bg-background">
<Navigation />
{/* <Navigation /> */}
{/* Section 1: Hero with Heading, Subheading, and Image */}
<section className="relative pt-32 pb-24 bg-background overflow-hidden">
@@ -220,7 +221,7 @@ export const GoodTimesProject = () => {
>
<Button
variant="ghost"
onClick={() => navigateTo('/case-studies')}
onClick={() => navigate('/case-studies')}
className="text-muted-foreground hover:text-foreground flex items-center gap-2 px-0 hover:bg-transparent"
>
<ArrowLeft className="w-4 h-4" />
@@ -1056,7 +1057,7 @@ export const GoodTimesProject = () => {
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<Button
size="lg"
onClick={() => navigateTo('/contact-us')}
onClick={() => navigate('/contact-us')}
className="bg-accent hover:bg-accent/90 text-accent-foreground"
>
Contact Our Team
@@ -1065,7 +1066,7 @@ export const GoodTimesProject = () => {
<Button
size="lg"
variant="outline"
onClick={() => navigateTo('/case-studies')}
onClick={() => navigate('/case-studies')}
className="border-accent/30 text-accent hover:bg-accent/10"
>
View More Case Studies
@@ -1076,7 +1077,7 @@ export const GoodTimesProject = () => {
</div>
</section>
<Footer />
{/* <Footer /> */}
</div>
);
};