diff --git a/components/what-we-do.tsx b/components/what-we-do.tsx new file mode 100644 index 0000000..123245d --- /dev/null +++ b/components/what-we-do.tsx @@ -0,0 +1,53 @@ +"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: , + title: "Free Travel Consultation", + description: "Get honest, unbiased advice about your trip plans without any sales pressure." + }, + { + icon: , + title: "Trip Comparison", + description: "Compare budgets, itineraries, and options from multiple travel agencies to find the best fit." + }, + { + icon: , + title: "Agency Suggestions", + description: "We connect you with trusted travel agencies that match your budget and preferences." + } + ]; + + return ( + + + + + What We Do + + + We're here to make your travel planning simple, transparent, and stress-free. + + + + {services.map((service, index) => ( + + + {service.icon} + {service.title} + + {service.description} + + + + ))} + + + + ); +}
+ We're here to make your travel planning simple, transparent, and stress-free. +