54 lines
2.0 KiB
TypeScript
54 lines
2.0 KiB
TypeScript
"use client";
|
|
import { Container } from "@/components/container";
|
|
import { Heading } from "@/components/heading";
|
|
import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
|
|
import { MessageSquare, Search, Users } from "lucide-react";
|
|
|
|
export function WhatWeDo() {
|
|
const services = [
|
|
{
|
|
icon: <MessageSquare className="h-8 w-8 text-green-700" />,
|
|
title: "Free Travel Consultation",
|
|
description: "Get honest, unbiased advice about your trip plans without any sales pressure."
|
|
},
|
|
{
|
|
icon: <Search className="h-8 w-8 text-green-700" />,
|
|
title: "Trip Comparison",
|
|
description: "Compare budgets, itineraries, and options from multiple travel agencies to find the best fit."
|
|
},
|
|
{
|
|
icon: <Users className="h-8 w-8 text-green-700" />,
|
|
title: "Agency Suggestions",
|
|
description: "We connect you with trusted travel agencies that match your budget and preferences."
|
|
}
|
|
];
|
|
|
|
return (
|
|
<section className="py-20 bg-white">
|
|
<Container>
|
|
<div className="text-center mb-12">
|
|
<Heading className="text-3xl md:text-4xl font-bold text-neutral-900">
|
|
What We Do
|
|
</Heading>
|
|
<p className="mt-4 text-lg text-neutral-600 max-w-2xl mx-auto">
|
|
We're here to make your travel planning simple, transparent, and stress-free.
|
|
</p>
|
|
</div>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
|
|
{services.map((service, index) => (
|
|
<Card key={index} className="border-neutral-200 hover:shadow-lg transition-shadow">
|
|
<CardHeader>
|
|
<div className="mb-4">{service.icon}</div>
|
|
<CardTitle className="text-xl font-semibold text-neutral-900">{service.title}</CardTitle>
|
|
<CardDescription className="text-neutral-600 text-base">
|
|
{service.description}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
))}
|
|
</div>
|
|
</Container>
|
|
</section>
|
|
);
|
|
}
|