4 Commits

Author SHA1 Message Date
949afe3c32 Merge version_3 into main
Merge version_3 into main
2026-03-06 13:55:06 +00:00
e08f0923f9 Update src/app/hyatt-place-hyderabad/page.tsx 2026-03-06 13:55:02 +00:00
6a868d9675 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:47:27 +00:00
6ac40f2973 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:46:20 +00:00

View File

@@ -4,7 +4,7 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav
import HeroLogo from "@/components/sections/hero/HeroLogo";
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
@@ -99,31 +99,19 @@ export default function HyattPlaceHyderabadPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
<PricingCardOne
plans={[
{
id: "1", price: "₹4,500/night", name: "Standard Room", buttons: [
{ text: "Check Availability", href: "#contact" },
{ text: "Learn More", onClick: () => {} },
],
features: [
id: "1", badge: "Standard Room", price: "₹4,500", subtitle: "per night", features: [
"Queen size bed", "Free Wi-Fi", "Air conditioning", "32-inch LED TV", "Work desk", "En-suite bathroom"],
},
{
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
price: "₹5,500/night", name: "Deluxe Room", buttons: [
{ text: "Book Now", href: "#contact" },
{ text: "Details", onClick: () => {} },
],
features: [
price: "₹5,500", subtitle: "per night", features: [
"King size bed", "Premium free Wi-Fi", "Climate control", "42-inch Smart TV", "Executive work area", "Luxury bathroom with rainshower", "Minibar"],
},
{
id: "3", price: "₹7,500/night", name: "Suite", buttons: [
{ text: "Reserve Suite", href: "#contact" },
{ text: "Tour", onClick: () => {} },
],
features: [
id: "3", badge: "Suite", price: "₹7,500", subtitle: "per night", features: [
"King bed + living area", "Separate bedroom", "High-speed Wi-Fi", "Smart climate system", "Premium TV package", "Spa-inspired bathroom", "Full minibar", "Priority room service"],
},
]}
@@ -175,6 +163,37 @@ export default function HyattPlaceHyderabadPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
faqs={[
{
id: "1", title: "What is the check-in and check-out time?", content:
"Check-in is from 2:00 PM and check-out is at 11:00 AM. Early check-in or late check-out may be available upon request subject to availability. Please contact the front desk for arrangements."},
{
id: "2", title: "Is breakfast included in the room rate?", content:
"Yes, complimentary breakfast is included with all room bookings. Our breakfast buffet features a variety of local and international cuisine, served daily from 7:00 AM to 10:00 AM."},
{
id: "3", title: "Is parking available at the hotel?", content:
"Yes, we offer free secure parking for all guests. Our parking facility is available 24/7 with ample space for vehicles. No additional charges apply."},
{
id: "4", title: "What is your cancellation policy?", content:
"We offer free cancellation up to 24 hours before check-in on most bookings. Specific terms may vary depending on your booking platform and room type. Please check your booking confirmation for exact cancellation terms."},
{
id: "5", title: "How far is the hotel from the airport?", content:
"Hyatt Place Hyderabad is approximately 25 km from Rajiv Gandhi International Airport. The journey typically takes 40-50 minutes depending on traffic. We can arrange airport pickup upon request."},
{
id: "6", title: "Are pets allowed at the hotel?", content:
"We welcome pets on request. Please inform us during booking so we can make necessary arrangements. Additional pet fees may apply. Contact the hotel directly to confirm current pet policies."},
]}
title="Frequently Asked Questions"
description="Find answers to common questions about your stay at Hyatt Place Hyderabad"
tag="Help & Information"
textboxLayout="default"
useInvertedBackground={true}
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to book your premium stay at Hyatt Place Hyderabad? Contact our reservations team for special packages and personalized services."
@@ -207,4 +226,4 @@ export default function HyattPlaceHyderabadPage() {
</div>
</ThemeProvider>
);
}
}