2025-07-11 16:54:37 +05:30
|
|
|
import { Button } from "./ui/button";
|
|
|
|
|
import { GridPattern } from "./GridPattern";
|
|
|
|
|
import { Calendar, Briefcase } from "lucide-react";
|
2025-07-17 13:28:29 +05:30
|
|
|
import { motion } from "framer-motion";
|
2025-07-17 16:00:38 +05:30
|
|
|
import Spline from "@splinetool/react-spline";
|
2025-09-23 20:13:31 +05:30
|
|
|
import { useNavigate } from "react-router-dom";
|
2025-07-17 16:00:38 +05:30
|
|
|
|
2025-07-11 16:54:37 +05:30
|
|
|
export function HeroSection() {
|
2025-09-23 20:13:31 +05:30
|
|
|
const navigate = useNavigate();
|
2025-07-11 16:54:37 +05:30
|
|
|
return (
|
2025-07-17 17:45:38 +05:30
|
|
|
<section
|
|
|
|
|
id="hero"
|
|
|
|
|
className="relative lg:min-h-[85vh] flex items-center pt-20"
|
|
|
|
|
>
|
2025-07-11 16:54:37 +05:30
|
|
|
<GridPattern />
|
2025-07-17 17:45:38 +05:30
|
|
|
|
2025-07-11 16:54:37 +05:30
|
|
|
<div className="container mx-auto px-6 lg:px-8">
|
2025-07-29 16:34:16 +05:30
|
|
|
<div className="flex flex-col-reverse lg:flex-row items-center gap-12 w-full relative z-10">
|
2025-07-17 13:28:29 +05:30
|
|
|
{/* Left Content */}
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.div
|
2025-07-17 13:28:29 +05:30
|
|
|
className="w-full lg:w-1/2"
|
|
|
|
|
initial={{ opacity: 0, x: -50 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
transition={{ duration: 0.8 }}
|
|
|
|
|
>
|
2025-07-11 16:54:37 +05:30
|
|
|
{/* Animated Badge */}
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.div
|
2025-07-17 13:28:29 +05:30
|
|
|
className="group relative inline-flex items-center rounded-full px-4 py-1.5 shadow-[inset_0_-8px_10px_#8fdfff1f] transition-shadow duration-500 ease-out hover:shadow-[inset_0_-5px_10px_#8fdfff3f] mb-6"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
transition={{ duration: 0.6, delay: 0.2 }}
|
|
|
|
|
>
|
2025-07-11 16:54:37 +05:30
|
|
|
<span
|
|
|
|
|
className="absolute inset-0 block h-full w-full animate-gradient rounded-[inherit] bg-gradient-to-r from-[#ffaa40]/50 via-[#9c40ff]/50 to-[#ffaa40]/50 bg-[length:300%_100%] p-[1px]"
|
|
|
|
|
style={{
|
2025-07-17 17:45:38 +05:30
|
|
|
WebkitMask:
|
|
|
|
|
"linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0)",
|
2025-07-11 16:54:37 +05:30
|
|
|
WebkitMaskComposite: "destination-out",
|
|
|
|
|
maskComposite: "subtract",
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<span className="relative z-10 flex items-center text-sm font-medium">
|
|
|
|
|
🎉
|
2025-07-17 17:45:38 +05:30
|
|
|
<span
|
|
|
|
|
aria-hidden="true"
|
|
|
|
|
className="mx-2 h-4 w-px shrink-0 bg-neutral-500"
|
|
|
|
|
/>
|
2025-07-11 16:54:37 +05:30
|
|
|
<span className="bg-clip-text text-transparent bg-[linear-gradient(90deg,#ffaa40_0%,#9c40ff_50%,#ffaa40_100%)] bg-[length:200%_100%] animate-[gradientMove_6s_ease_infinite]">
|
|
|
|
|
25+ Years Of Industry Expertise
|
|
|
|
|
</span>
|
|
|
|
|
<svg
|
|
|
|
|
className="ml-1 w-4 h-4 stroke-neutral-500 transition-transform duration-300 group-hover:translate-x-0.5"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
2025-07-17 17:45:38 +05:30
|
|
|
<path
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
d="M9 5l7 7-7 7"
|
|
|
|
|
/>
|
2025-07-11 16:54:37 +05:30
|
|
|
</svg>
|
|
|
|
|
</span>
|
2025-07-17 13:28:29 +05:30
|
|
|
</motion.div>
|
2025-07-11 16:54:37 +05:30
|
|
|
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.h1
|
2025-07-17 13:28:29 +05:30
|
|
|
className="text-4xl sm:text-5xl md:text-6xl font-semibold tracking-tight text-white max-w-3xl"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.3 }}
|
|
|
|
|
>
|
2026-03-18 17:55:47 +05:30
|
|
|
{/* Architecting Digital Success for Startups & Enterprises */}
|
2026-03-27 11:13:52 +05:30
|
|
|
Mobile application developers for Startups & Enterprises
|
2025-07-17 13:28:29 +05:30
|
|
|
</motion.h1>
|
2025-07-11 16:54:37 +05:30
|
|
|
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.p
|
2025-07-17 13:28:29 +05:30
|
|
|
className="mt-6 max-w-2xl text-lg text-gray-400"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.4 }}
|
|
|
|
|
>
|
2025-07-17 17:45:38 +05:30
|
|
|
We design and build secure, AI-powered apps and software tailored
|
|
|
|
|
for scale, speed, and user engagement.
|
2025-07-17 13:28:29 +05:30
|
|
|
</motion.p>
|
2025-07-11 16:54:37 +05:30
|
|
|
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.div
|
2025-07-17 13:28:29 +05:30
|
|
|
className="mt-10 flex flex-col sm:flex-row gap-3"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.5 }}
|
|
|
|
|
>
|
2025-07-17 17:45:38 +05:30
|
|
|
<Button
|
|
|
|
|
size="lg"
|
|
|
|
|
className="whitespace-nowrap"
|
2025-09-23 20:13:31 +05:30
|
|
|
onClick={() => navigate("/start-a-project")}
|
2025-07-17 17:45:38 +05:30
|
|
|
>
|
2025-07-11 16:54:37 +05:30
|
|
|
<Calendar className="w-4 h-4" />
|
|
|
|
|
Book a Free Consultation
|
|
|
|
|
</Button>
|
2025-07-17 17:45:38 +05:30
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
variant="secondary"
|
|
|
|
|
size="lg"
|
|
|
|
|
className="whitespace-nowrap"
|
2025-09-23 20:13:31 +05:30
|
|
|
onClick={() => navigate("/services")}
|
2025-07-17 17:45:38 +05:30
|
|
|
>
|
2025-07-11 16:54:37 +05:30
|
|
|
<Briefcase className="w-4 h-4" />
|
|
|
|
|
Explore Services
|
|
|
|
|
</Button>
|
2025-07-17 13:28:29 +05:30
|
|
|
</motion.div>
|
|
|
|
|
</motion.div>
|
2025-07-11 16:54:37 +05:30
|
|
|
|
2025-07-17 13:28:29 +05:30
|
|
|
{/* Right Side - Animated Gradient Background */}
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.div
|
|
|
|
|
className="w-full lg:w-1/2 h-[320px] md:h-[480px] lg:h-[560px] shrink-0 relative"
|
|
|
|
|
initial={{ opacity: 0, x: 50 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.2 }}
|
|
|
|
|
>
|
2025-07-29 16:34:16 +05:30
|
|
|
<div className="absolute w-[160px] h-[46px] bg-[#0e0e0e] bottom-[3%] right-[1%]"></div>
|
|
|
|
|
<div className="w-full h-full overflow-hidden rounded-2xl pointer-events-none">
|
2025-07-17 17:45:38 +05:30
|
|
|
<Spline scene="https://prod.spline.design/nwCSrO6RnOG0v1GV/scene.splinecode" />
|
|
|
|
|
</div>
|
|
|
|
|
</motion.div>
|
2025-07-11 16:54:37 +05:30
|
|
|
</div>
|
|
|
|
|
|
2025-07-17 13:28:29 +05:30
|
|
|
{/* Floating scroll indicator */}
|
2025-07-17 17:45:38 +05:30
|
|
|
<motion.div
|
2025-07-17 13:28:29 +05:30
|
|
|
className="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
transition={{ duration: 0.8, delay: 1.0 }}
|
|
|
|
|
>
|
2025-07-17 17:45:38 +05:30
|
|
|
<svg
|
|
|
|
|
className="w-6 h-6 text-gray-400"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
d="M19 14l-7 7m0 0l-7-7m7 7V3"
|
|
|
|
|
/>
|
2025-07-11 16:54:37 +05:30
|
|
|
</svg>
|
2025-07-17 13:28:29 +05:30
|
|
|
</motion.div>
|
2025-07-11 16:54:37 +05:30
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
2025-07-17 17:45:38 +05:30
|
|
|
}
|