almost all linking done exept underdevelopment pages or not developed
This commit is contained in:
@@ -1,26 +1,27 @@
|
||||
import React from "react";
|
||||
import { motion } from "framer-motion";
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { ProcessSection } from "../components/ProcessSection";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AnimatedGradientText } from "../components/AnimatedGradientText";
|
||||
import { Button } from "../components/ui/button";
|
||||
import { ShimmerButton } from "../components/ui/shimmer-button";
|
||||
import { Badge } from "../components/ui/badge";
|
||||
import { Card, CardContent } from "../components/ui/card";
|
||||
import { GridPattern } from "../components/GridPattern";
|
||||
import { navigateTo } from "../App";
|
||||
import {
|
||||
Brain, Target, BarChart3, Eye, MessageSquare, Zap, Star,
|
||||
ArrowRight, ChevronRight, Clock, TrendingUp, Code, Layers,
|
||||
Layout, Rocket, Monitor, Lock, RefreshCcw, ShieldCheck,
|
||||
Heart, CheckCircle, Lightbulb, Coffee,
|
||||
Download, Calendar, Camera, Music, Gamepad2,
|
||||
CreditCard, Bell, Mail, Search, Home, MapPin,
|
||||
Github, Slack, Figma, Chrome, Zap as ZapIcon, Video,
|
||||
Cog, Settings, Sparkles, Handshake, Award, UserPlus, Cpu, Database, Server, Users
|
||||
import {
|
||||
BarChart3,
|
||||
Brain,
|
||||
Calendar,
|
||||
Eye,
|
||||
Lightbulb,
|
||||
MessageSquare,
|
||||
Rocket,
|
||||
Settings,
|
||||
Target,
|
||||
TrendingUp,
|
||||
UserPlus,
|
||||
Zap
|
||||
} from "lucide-react";
|
||||
import { navigateTo } from "../App";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { ProcessSection } from "../components/ProcessSection";
|
||||
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";
|
||||
|
||||
// Enhanced Hero Section
|
||||
const HeroWithCTA = () => {
|
||||
@@ -63,7 +64,10 @@ const HeroWithCTA = () => {
|
||||
transition={{ duration: 0.8, delay: 0.3 }}
|
||||
className="flex flex-col sm:flex-row gap-4"
|
||||
>
|
||||
<ShimmerButton className="text-lg px-8 py-4" onClick={() => navigateTo('/contact/schedule-a-discovery-call')}>
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
// onClick={() => navigateTo('/contact/schedule-a-discovery-call')}
|
||||
onClick={() => navigateTo("/start-a-project")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Calendar className="w-4 h-4 flex-shrink-0" />
|
||||
<span>ML Strategy Session</span>
|
||||
@@ -72,7 +76,7 @@ const HeroWithCTA = () => {
|
||||
<Button
|
||||
variant="secondary"
|
||||
size="lg"
|
||||
className="text-lg px-8 py-4"
|
||||
className="text-lg px-8 py-4 h-auto"
|
||||
onClick={() => navigateTo('/case-studies')}
|
||||
>
|
||||
<BarChart3 className="w-4 h-4 flex-shrink-0" />
|
||||
@@ -460,7 +464,8 @@ const InlineCTA = () => {
|
||||
<div className="flex flex-col items-start gap-4">
|
||||
<ShimmerButton
|
||||
className="text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl bg-[#E5195E] hover:bg-[#E5195E]/90"
|
||||
onClick={() => navigateTo('/contact/schedule-a-discovery-call')}
|
||||
// onClick={() => navigateTo('/contact/schedule-a-discovery-call')}
|
||||
onClick={() => navigateTo("/start-a-project")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-3">
|
||||
<Brain className="w-6 h-6 flex-shrink-0" />
|
||||
|
||||
Reference in New Issue
Block a user