Lazaworx.com [patched]

We will build a responsive, dark-themed, high-performance landing page and dashboard.

return ( <div className="py-20 max-w-7xl mx-auto px-6"> <h2 className="text-4xl font-bold mb-12 text-center">Our Recent Work</h2> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> projects.map((project) => ( <div key=project.id className="group relative overflow-hidden rounded-xl bg-zinc-900 border border-zinc-800"> <div className="aspect-video relative overflow-hidden"> <Image src=project.imageUrl alt=project.title fill className="object-cover group-hover:scale-110 transition-transform duration-500" /> </div> <div className="p-6"> <h3 className="text-xl font-bold mb-2">project.title</h3> <p className="text-zinc-400 text-sm mb-4">project.description</p> <div className="flex gap-2"> project.tags.map(tag => ( <span key=tag className="px-2 py-1 bg-purple-900/50 text-purple-300 text-xs rounded-full">tag</span> )) </div> </div> </div> )) </div> </div> ); lazaworx.com