This commit is contained in:
eric
2026-03-14 00:28:34 -05:00
parent cf1e3760c2
commit 1f8c9c6d26
88 changed files with 5463 additions and 22657 deletions

View File

@@ -0,0 +1,61 @@
"use client";
import { MapPin, TrendingUp, Zap, Users } from "lucide-react";
import { motion } from "framer-motion";
import { VALUE_PROPOSITIONS } from "~/lib/data";
const ICON_MAP = {
MapPin,
TrendingUp,
Zap,
Users,
} as const;
export function ValueGrid() {
return (
<section className="bg-neutral-50 py-16 md:py-24">
<div className="container mx-auto px-4 md:px-6">
<motion.h2
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-80px" }}
className="text-center text-2xl font-semibold text-neutral-900 md:text-3xl"
>
</motion.h2>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
className="mx-auto mt-3 max-w-2xl text-center text-neutral-600"
>
</motion.p>
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-4">
{VALUE_PROPOSITIONS.map((item, i) => {
const Icon = ICON_MAP[item.icon];
return (
<motion.div
key={item.id}
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-40px" }}
transition={{ delay: i * 0.05 }}
className="rounded-xl border border-neutral-200 bg-white p-6 shadow-sm transition-all hover:shadow-md"
>
<Icon className="h-10 w-10 text-neutral-600" />
<h3 className="mt-4 font-medium text-neutral-900">
{item.title}
</h3>
<p className="mt-2 text-sm text-neutral-600">
{item.description}
</p>
</motion.div>
);
})}
</div>
</div>
</section>
);
}