From 6540c76ac538fe4851c86e80efa10b1a21e1eec9 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 12:59:13 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..f12ee49 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,37 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { MessageCircle } from "lucide-react"; + +export function Hero() { + const handleWhatsAppClick = () => { + window.open("https://wa.me/919999999999?text=Hi, I need help planning my trip", "_blank"); + }; + + return ( +
+ +
+ + Confused About Your Trip?
We Help You Choose Right. +
+ + Independent travel consultation to help you find the best trip, best agency, and best value — without pressure. + +
+ +
+
+
+
+ ); +}