2026-03-30 20:20:21 +06:00
|
|
|
import { useRef } from 'react';
|
|
|
|
|
import { motion, useInView } from 'framer-motion';
|
|
|
|
|
import { ArrowRight, ExternalLink } from 'lucide-react';
|
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
import { Button } from '@/components/ui/button';
|
2026-04-05 01:20:52 +06:00
|
|
|
import { useProjects } from '@/hooks/queires/useProjects';
|
2026-03-30 20:20:21 +06:00
|
|
|
|
2026-04-05 01:20:52 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
const gradientColors = [
|
|
|
|
|
"from-neon-blue/80",
|
|
|
|
|
"from-neon-purple/80",
|
|
|
|
|
"from-neon-green/80",
|
|
|
|
|
"from-neon-pink/80"
|
2026-03-30 20:20:21 +06:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default function ProjectsSection() {
|
2026-04-05 01:20:52 +06:00
|
|
|
|
|
|
|
|
const { data: projectsData } = useProjects({
|
|
|
|
|
fields: "category, title, image",
|
|
|
|
|
limit: 6
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const projects = projectsData?.data.data.result
|
|
|
|
|
console.log(projects);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-03-30 20:20:21 +06:00
|
|
|
const ref = useRef<HTMLElement>(null);
|
|
|
|
|
const isInView = useInView(ref, { once: true, margin: '-100px' });
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<section id="projects" ref={ref} className="py-24 relative overflow-hidden bg-secondary/30">
|
|
|
|
|
{/* Background pattern */}
|
|
|
|
|
<div className="absolute inset-0 opacity-5">
|
|
|
|
|
<div className="absolute inset-0" style={{
|
|
|
|
|
backgroundImage: `radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0)`,
|
|
|
|
|
backgroundSize: '40px 40px',
|
|
|
|
|
}} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="container mx-auto px-4 relative z-10">
|
|
|
|
|
{/* Section Header */}
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.6 }}
|
|
|
|
|
className="text-center mb-16"
|
|
|
|
|
>
|
|
|
|
|
<span className="inline-block px-4 py-1.5 rounded-full glass text-sm font-medium text-primary mb-4">
|
|
|
|
|
Our Portfolio
|
|
|
|
|
</span>
|
|
|
|
|
<h2 className="text-3xl md:text-4xl lg:text-5xl font-bold mb-4">
|
|
|
|
|
Our <span className="text-primary neon-text-glow">Projects</span>
|
|
|
|
|
</h2>
|
|
|
|
|
<p className="text-muted-foreground max-w-2xl mx-auto text-lg">
|
2026-04-05 01:20:52 +06:00
|
|
|
Explore our latest work and see how we've helped businesses
|
2026-03-30 20:20:21 +06:00
|
|
|
transform their digital presence.
|
|
|
|
|
</p>
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
|
|
|
|
{/* Projects Grid */}
|
|
|
|
|
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
|
2026-04-05 01:20:52 +06:00
|
|
|
{projects?.map((project, index) => {
|
|
|
|
|
const color = gradientColors[index % gradientColors.length];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<motion.div
|
|
|
|
|
key={project._id}
|
|
|
|
|
initial={{ opacity: 0, y: 30 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.5, delay: index * 0.1 }}
|
|
|
|
|
whileHover={{ y: -8 }}
|
|
|
|
|
className="group relative rounded-2xl overflow-hidden cursor-pointer"
|
|
|
|
|
>
|
|
|
|
|
{/* Image */}
|
|
|
|
|
<div className="aspect-[4/3] overflow-hidden">
|
|
|
|
|
<img
|
|
|
|
|
src={project.image}
|
|
|
|
|
alt={project.title}
|
|
|
|
|
className="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Overlay */}
|
|
|
|
|
<div
|
|
|
|
|
className={`absolute inset-0 bg-gradient-to-t ${color} to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300`}
|
2026-03-30 20:20:21 +06:00
|
|
|
/>
|
2026-04-05 01:20:52 +06:00
|
|
|
|
|
|
|
|
{/* Content */}
|
|
|
|
|
<div className="absolute inset-0 flex flex-col justify-end p-6">
|
|
|
|
|
<div className="transform translate-y-4 opacity-0 group-hover:translate-y-0 group-hover:opacity-100 transition-all duration-300">
|
|
|
|
|
<span className="inline-block px-3 py-1 rounded-full bg-background/20 backdrop-blur-sm text-white text-xs font-medium mb-2">
|
|
|
|
|
{project.category}
|
|
|
|
|
</span>
|
|
|
|
|
<h3 className="text-xl font-bold text-white mb-2">{project.title}</h3>
|
|
|
|
|
<div className="flex items-center gap-2 text-white/80 text-sm">
|
|
|
|
|
<span>View Project</span>
|
|
|
|
|
<ExternalLink className="w-4 h-4" />
|
|
|
|
|
</div>
|
2026-03-30 20:20:21 +06:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-05 01:20:52 +06:00
|
|
|
{/* Border glow effect */}
|
|
|
|
|
<div className="absolute inset-0 rounded-2xl border-2 border-transparent group-hover:border-primary/50 group-hover:neon-glow transition-all duration-300 pointer-events-none" />
|
|
|
|
|
</motion.div>
|
|
|
|
|
);
|
|
|
|
|
})}
|
2026-03-30 20:20:21 +06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* See All Button */}
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.6, delay: 0.5 }}
|
|
|
|
|
className="text-center"
|
|
|
|
|
>
|
|
|
|
|
<Link to="/projects">
|
|
|
|
|
<Button
|
|
|
|
|
size="lg"
|
|
|
|
|
className="bg-primary text-primary-foreground font-semibold px-8 py-6 text-lg rounded-full neon-glow hover:neon-glow-strong transition-all group"
|
|
|
|
|
>
|
|
|
|
|
See All Projects
|
|
|
|
|
<ArrowRight className="ml-2 w-5 h-5 group-hover:translate-x-1 transition-transform" />
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
</motion.div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
}
|