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

@@ -39,13 +39,14 @@ import { Badge } from "../components/ui/badge";
import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import { navigateTo } from "@/App";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
import HireDeveloperSection from "@/components/HireDeveloperSection";
import iotImage from "../src/images/iot.png";
// Wearable & Device App Development Hero Section
const WearableHeroWithCTA = () => {
const navigate = useNavigate();
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
@@ -136,7 +137,7 @@ const WearableHeroWithCTA = () => {
>
<ShimmerButton
className="text-lg px-8 py-4"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-2">
<Watch className="w-5 h-5 flex-shrink-0" />
@@ -1253,6 +1254,7 @@ const WearableCaseStudies = () => {
// Mid-Page CTA
const WearableInlineCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20">
<div className="container mx-auto px-6 lg:px-8">
@@ -1291,7 +1293,7 @@ const WearableInlineCTA = () => {
<ShimmerButton
className="text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-3">
<Lightbulb className="w-6 h-6 flex-shrink-0" />
@@ -1378,6 +1380,7 @@ const WearableFAQs = () => {
// Final CTA Section
const WearableFinalCTA = () => {
const navigate = useNavigate();
return (
<section className="py-20 relative overflow-hidden">
<div className="container mx-auto px-6 lg:px-8 relative z-10">
@@ -1430,7 +1433,7 @@ const WearableFinalCTA = () => {
>
<ShimmerButton
className="px-12 py-6 text-xl rounded-2xl shadow-2xl hover:shadow-accent/25"
onClick={() => navigateTo("/start-a-project")}
onClick={() => navigate("/start-a-project")}
>
<div className="inline-flex items-center gap-3">
<Rocket className="w-6 h-6 flex-shrink-0" />
@@ -1459,7 +1462,7 @@ const WearableFinalCTA = () => {
export const WearableDeviceDevelopment = () => {
return (
<div className="dark min-h-screen">
<Navigation />
{/* <Navigation /> */}
{/* Hero Section */}
<section className="bg-black">
@@ -1471,11 +1474,16 @@ export const WearableDeviceDevelopment = () => {
<WearableBenefits />
</section>
{/* Capabilities */}
{/* Case Studies */}
<section className="bg-card">
<WearableCapabilities />
<WearableCaseStudies />
</section>
{/* Capabilities */}
{/* <section className="bg-card">
<WearableCapabilities />
</section> */}
{/* Development Process */}
<section className="bg-background">
<WearableProcess />
@@ -1491,10 +1499,6 @@ export const WearableDeviceDevelopment = () => {
<WearableTechStack />
</section>
{/* Case Studies */}
{/* <section className="bg-card">
<WearableCaseStudies />
</section> */}
<HireDeveloperSection
title="Augment Your Team with Top Wearable App Developers"
@@ -1525,14 +1529,14 @@ export const WearableDeviceDevelopment = () => {
{/* Mid-Page CTA */}
<section className="bg-background">
{/* <section className="bg-background">
<WearableInlineCTA />
</section>
</section> */}
{/* FAQs */}
<section className="bg-card">
{/* <section className="bg-card">
<WearableFAQs />
</section>
</section> */}
{/* Final CTA */}
<section className="bg-background">
@@ -1540,8 +1544,8 @@ export const WearableDeviceDevelopment = () => {
</section>
{/* Footer */}
<section className="bg-card">
<Footer />
<section className="bg-background">
{/* <Footer /> */}
</section>
</div>
);