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. + +
+ +
+
+
+
+ ); +}