Update src/app/events/page.tsx

This commit is contained in:
2026-06-10 06:16:02 +00:00
parent 3655ae18a0
commit 1eec95a63d

View File

@@ -26,42 +26,24 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Rooms",
id: "/rooms",
},
name: "Rooms", id: "/rooms"},
{
name: "Amenities",
id: "/amenities",
},
name: "Amenities", id: "/amenities"},
{
name: "Events",
id: "/events",
},
name: "Events", id: "/events"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Reviews",
id: "/reviews",
},
name: "Reviews", id: "/reviews"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
button={{
text: "Book Now",
href: "/contact",
}}
text: "Book Now", href: "/contact"}}
brandName="Australasia Resort"
/>
</div>
@@ -74,26 +56,11 @@ export default function LandingPage() {
useInvertedBackground={true}
products={[
{
id: "event-weddings",
name: "Weddings & Anniversaries",
price: "Inquire for quote",
imageSrc: "http://img.b2bpic.net/free-photo/amazing-woman-long-pink-dress-standing-beside-lake-charming-ladies-holding-hands-near-outdoor-pool-with-forest_197531-9164.jpg",
imageAlt: "Tropical Wedding Venue",
},
id: "event-weddings", name: "Weddings & Anniversaries", price: "Inquire for quote", imageSrc: "http://img.b2bpic.net/free-photo/amazing-woman-long-pink-dress-standing-beside-lake-charming-ladies-holding-hands-near-outdoor-pool-with-forest_197531-9164.jpg", imageAlt: "Tropical Wedding Venue"},
{
id: "event-corporate",
name: "Corporate Events & Retreats",
price: "Inquire for quote",
imageSrc: "http://img.b2bpic.net/free-photo/couple-performing-yoga-safari-vacation_107420-9667.jpg",
imageAlt: "Corporate Event Setup",
},
id: "event-corporate", name: "Corporate Events & Retreats", price: "Inquire for quote", imageSrc: "http://img.b2bpic.net/free-photo/couple-performing-yoga-safari-vacation_107420-9667.jpg", imageAlt: "Corporate Event Setup"},
{
id: "event-celebrations",
name: "Birthdays & Celebrations",
price: "Inquire for quote",
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-roses-bouquet-back_23-2148014536.jpg",
imageAlt: "Birthday Party Celebration",
},
id: "event-celebrations", name: "Birthdays & Celebrations", price: "Inquire for quote", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-roses-bouquet-back_23-2148014536.jpg", imageAlt: "Birthday Party Celebration"},
]}
title="Host Your Unforgettable Event"
description="Our versatile venues are perfect for any occasion, from intimate family gatherings to grand corporate events. Let us help you create a truly special experience."
@@ -106,11 +73,9 @@ export default function LandingPage() {
title="Seamless Event Planning"
buttons={[
{
text: "Request Event Quote",
href: "/contact",
},
text: "Request Event Quote", href: "/contact"},
]}
description="Our dedicated team is here to assist you with every detail, ensuring your event runs smoothly. From conceptualization to execution, we're committed to making your occasion perfect. Contact us today to discuss your requirements and get a personalized quote."
/>
</div>
@@ -118,71 +83,43 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Resort",
items: [
title: "Resort", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
],
},
{
title: "Accommodations",
items: [
title: "Accommodations", items: [
{
label: "Rooms & Suites",
href: "/rooms",
},
label: "Rooms & Suites", href: "/rooms"},
{
label: "Family Rooms",
href: "/rooms#family-suite",
},
label: "Family Rooms", href: "/rooms#family-suite"},
{
label: "Amenities",
href: "/amenities",
},
label: "Amenities", href: "/amenities"},
],
},
{
title: "Events",
items: [
title: "Events", items: [
{
label: "Weddings",
href: "/events",
},
label: "Weddings", href: "/events"},
{
label: "Corporate",
href: "/events",
},
label: "Corporate", href: "/events"},
{
label: "Celebrations",
href: "/events",
},
label: "Celebrations", href: "/events"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Get Directions",
href: "https://maps.app.goo.gl/example",
},
label: "Get Directions", href: "https://maps.app.goo.gl/example"},
{
label: "Call Now",
href: "tel:+639602607986",
},
label: "Call Now", href: "tel:+639602607986"},
],
},
]}