diff --git a/src/app/page.tsx b/src/app/page.tsx index 483abe4..7946693 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,8 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import EmailSignupForm from '@/components/form/EmailSignupForm'; +import { Award } from 'lucide-react'; export default function LandingPage() { return ( @@ -31,14 +33,10 @@ export default function LandingPage() { +
+ +
+
-
- +
+

Join Our Newsletter

+

Get exclusive offers and hotel updates directly in your inbox.

+
@@ -164,12 +128,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "faq1", title: "What is the check-in time?", content: "Check-in begins at 3:00 PM."}, - { - id: "faq2", title: "Do you offer parking?", content: "Yes, we have secure underground parking for guests."}, - { - id: "faq3", title: "Is breakfast included?", content: "Yes, all our bookings include a complimentary gourmet breakfast."}, + { id: "faq1", title: "What is the check-in time?", content: "Check-in begins at 3:00 PM." }, + { id: "faq2", title: "Do you offer parking?", content: "Yes, we have secure underground parking for guests." }, ]} title="Common Questions" description="Get answers to frequently asked questions about our services and policies." @@ -183,15 +143,10 @@ export default function LandingPage() { title="Get In Touch" description="Have questions or special requests? Reach out to us today." inputs={[ - { - name: "name", type: "text", placeholder: "Your Name", required: true, - }, - { - name: "email", type: "email", placeholder: "Your Email", required: true, - }, + { name: "name", type: "text", placeholder: "Your Name", required: true }, + { name: "email", type: "email", placeholder: "Your Email", required: true }, ]} - textarea={{ - name: "message", placeholder: "Your inquiry..."}} + textarea={{ name: "message", placeholder: "Your inquiry..." }} imageSrc="http://img.b2bpic.net/free-photo/friendly-cheerful-hotel-administrator-taking-guest-feedback-asking-about-their-stay-check-out-process-resort-staff-employees-working-front-desk-check-reception_482257-65130.jpg" />
@@ -201,36 +156,13 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/highway-bridge-shanghai_649448-3983.jpg" logoText="Adwest Hotel" columns={[ - { - title: "Contact", items: [ - { - label: "Email: hello@adwesthotel.com", href: "mailto:hello@adwesthotel.com"}, - { - label: "Phone: +1 555-0123", href: "tel:+15550123"}, - ], - }, - { - title: "Explore", items: [ - { - label: "Rooms", href: "#products"}, - { - label: "Spa", href: "#"}, - { - label: "Dining", href: "#"}, - ], - }, - { - title: "Legal", items: [ - { - label: "Privacy Policy", href: "#"}, - { - label: "Terms of Service", href: "#"}, - ], - }, + { title: "Contact", items: [{ label: "Email: hello@adwesthotel.com", href: "mailto:hello@adwesthotel.com" }, { label: "Phone: +1 555-0123", href: "tel:+15550123" }] }, + { title: "Explore", items: [{ label: "Rooms", href: "#products" }] }, + { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }, ]} />
); -} \ No newline at end of file +}