Update src/app/contact/page.tsx

This commit is contained in:
2026-01-29 18:49:47 +00:00
parent 29301b3fa6
commit 691a67731c

View File

@@ -1,6 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
@@ -24,10 +25,15 @@ export default function ContactPage() {
<NavbarStyleMinimal <NavbarStyleMinimal
brandName="Serenity Hotel" brandName="Serenity Hotel"
button={{ button={{
text: "Book Now", text: "Book Now", href: "/booking"
href: "/booking"
}} }}
/> />
<div className="hidden">
<Link href="/">Home</Link>
<Link href="/about">About</Link>
<Link href="/contact">Contact</Link>
<Link href="/blog">Blog</Link>
</div>
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
@@ -37,41 +43,29 @@ export default function ContactPage() {
tag="Help & Support" tag="Help & Support"
tagIcon={HelpCircle} tagIcon={HelpCircle}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="smooth"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
mediaPosition="right" mediaPosition="right"
imageSrc="https://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-women-using-mobile_74190-9662.jpg" imageSrc="https://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-women-using-mobile_74190-9662.jpg"
imageAlt="Hotel reception area with helpful staff" imageAlt="Hotel reception area with helpful staff"
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "What are your check-in and check-out times?", content: "Standard check-in time is 3:00 PM and check-out time is 11:00 AM. Early check-in and late check-out are available upon request, subject to room availability."
title: "What are your check-in and check-out times?",
content: "Standard check-in time is 3:00 PM and check-out time is 11:00 AM. Early check-in and late check-out are available upon request, subject to room availability."
}, },
{ {
id: "2", id: "2", title: "Is breakfast included in the room rate?", content: "Complimentary breakfast is included with all room bookings. Our full breakfast buffet is served daily from 6:30 AM to 10:30 AM in our main dining area."
title: "Is breakfast included in the room rate?",
content: "Complimentary breakfast is included with all room bookings. Our full breakfast buffet is served daily from 6:30 AM to 10:30 AM in our main dining area."
}, },
{ {
id: "3", id: "3", title: "Do you offer airport transportation?", content: "Yes, we provide complimentary airport shuttle service for our guests. Please arrange this in advance with our concierge or indicate your preference during booking."
title: "Do you offer airport transportation?",
content: "Yes, we provide complimentary airport shuttle service for our guests. Please arrange this in advance with our concierge or indicate your preference during booking."
}, },
{ {
id: "4", id: "4", title: "Are pets allowed at the hotel?", content: "We welcome well-behaved pets! A pet fee of $25 per night applies. Please inform us during booking or contact our concierge to make arrangements."
title: "Are pets allowed at the hotel?",
content: "We welcome well-behaved pets! A pet fee of $25 per night applies. Please inform us during booking or contact our concierge to make arrangements."
}, },
{ {
id: "5", id: "5", title: "What parking options are available?", content: "We offer complimentary on-site parking for all guests. Both covered and open parking options are available. Valet service is available for an additional fee."
title: "What parking options are available?",
content: "We offer complimentary on-site parking for all guests. Both covered and open parking options are available. Valet service is available for an additional fee."
}, },
{ {
id: "6", id: "6", title: "Do you have meeting and event facilities?", content: "Yes, our hotel features multiple event spaces and conference rooms perfect for business meetings, conferences, and celebrations. Contact our events team for customized packages."
title: "Do you have meeting and event facilities?",
content: "Yes, our hotel features multiple event spaces and conference rooms perfect for business meetings, conferences, and celebrations. Contact our events team for customized packages."
} }
]} ]}
/> />
@@ -82,8 +76,7 @@ export default function ContactPage() {
copyrightText="© 2024 Serenity Hotel. All rights reserved." copyrightText="© 2024 Serenity Hotel. All rights reserved."
columns={[ columns={[
{ {
title: "Hotel", title: "Hotel", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Our Rooms", href: "/rooms" }, { label: "Our Rooms", href: "/rooms" },
{ label: "Amenities", href: "/amenities" }, { label: "Amenities", href: "/amenities" },
@@ -91,8 +84,7 @@ export default function ContactPage() {
] ]
}, },
{ {
title: "Guest Services", title: "Guest Services", items: [
items: [
{ label: "Booking Policies", href: "/policies" }, { label: "Booking Policies", href: "/policies" },
{ label: "Cancellation", href: "/cancellation" }, { label: "Cancellation", href: "/cancellation" },
{ label: "Contact Concierge", href: "/contact" }, { label: "Contact Concierge", href: "/contact" },
@@ -100,8 +92,7 @@ export default function ContactPage() {
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Twitter", href: "https://twitter.com" },