"use client";
import { Code, Cog, PenTool, Shrub } from "lucide-react";
import { cn } from "@/lib/utils";
interface Services4Props {
className?: string;
}
const Services4 = ({ className }: Services4Props) => {
const services = [
{
icon: <Cog className="h-6 w-6" />,
title: "Product Strategy",
description:
"Strategic planning and market positioning to ensure your product meets user needs and business goals.",
items: ["Market Research", "User Personas", "Competitive Analysis"],
},
{
icon: <PenTool className="h-6 w-6" />,
title: "Design",
description:
"Beautiful, user-centered designs that create engaging experiences across all platforms.",
items: ["UI/UX Design", "Prototyping", "Interaction Design"],
},
{
icon: <Code className="h-6 w-6" />,
title: "Web Development",
description:
"Modern, scalable web applications built with the latest technologies and best practices.",
items: ["Frontend Dev", "Backend Dev", "API Integration"],
},
{
icon: <Shrub className="h-6 w-6" />,
title: "Marketing",
description:
"Data-driven strategies to launch successfully and scale your product efficiently.",
items: ["SEO Strategy", "Analytics & Data", "A/B Testing"],
},
];
return (
<section className={cn("py-32", className)}>
<div className="container">
<div className="mx-auto max-w-6xl space-y-12">
<div className="space-y-4 text-center">
<h2 className="text-3xl font-semibold tracking-tight md:text-4xl">
Services
</h2>
<p className="mx-auto max-w-2xl text-lg tracking-tight text-muted-foreground md:text-xl">
We craft digital experiences that captivate and convert, bringing
your vision to life.
</p>
</div>
<div className="grid grid-cols-1 gap-8 md:grid-cols-2">
{services.map((service, index) => (
<div
key={index}
className="space-y-6 rounded-lg border border-border p-8 transition-shadow hover:shadow-sm"
>
<div className="flex items-center gap-4">
<div className="rounded-full bg-muted p-3">
{service.icon}
</div>
<h3 className="text-xl font-semibold">{service.title}</h3>
</div>
<p className="leading-relaxed text-muted-foreground">
{service.description}
</p>
<div className="space-y-2">
{service.items.map((item, itemIndex) => (
<div key={itemIndex} className="flex items-center gap-2">
<div className="h-1.5 w-1.5 rounded-full bg-foreground" />
<span className="text-sm font-medium">{item}</span>
</div>
))}
</div>
</div>
))}
</div>
</div>
</div>
</section>
);
};
export { Services4 };