Files
alva/src/components/DeliverySection.tsx
T
gpt-engineer-app[bot] d6a81a7426 Changes
2026-01-28 13:51:24 +00:00

53 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Truck, Clock, MapPin } from "lucide-react";
const DeliverySection = () => {
return (
<section className="py-8 md:py-12 px-4 md:px-6 bg-card">
<div className="max-w-4xl mx-auto">
{/* Info cards */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 md:gap-6">
{/* Leveransområde */}
<div className="text-center p-4">
<div className="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center">
<MapPin className="w-5 h-5 text-primary" />
</div>
<h3 className="font-display text-base md:text-lg font-semibold mb-1">
Storstockholm
</h3>
<p className="text-muted-foreground text-sm">
Vi levererar till alla företag inom Storstockholmsområdet.
</p>
</div>
{/* Leveransdag */}
<div className="text-center p-4">
<div className="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center">
<Clock className="w-5 h-5 text-primary" />
</div>
<h3 className="font-display text-base md:text-lg font-semibold mb-1">
Veckoleverans
</h3>
<p className="text-muted-foreground text-sm">
Samma dag varje vecka ni väljer vilken dag som passar er bäst.
</p>
</div>
{/* Leveranstid */}
<div className="text-center p-4">
<div className="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center">
<Truck className="w-5 h-5 text-primary" />
</div>
<h3 className="font-display text-base md:text-lg font-semibold mb-1">
Dagtid
</h3>
<p className="text-muted-foreground text-sm">
Leverans under kontorstid. Meddela oss om ni har särskilda önskemål.
</p>
</div>
</div>
</div>
</section>
);
};
export default DeliverySection;