From a7308733d760e66405f440973166b317f863b7c8 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 12:59:29 +0000 Subject: [PATCH] Update components/what-we-do.tsx --- components/what-we-do.tsx | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 components/what-we-do.tsx 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} + +
+
+ ))} +
+
+
+ ); +}