Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-06-10 06:17:16 +00:00
Showing only changes of commit 4d109f9db8 - Show all commits

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>
@@ -70,8 +52,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
tag="Get in Touch"
title="Plan Your Visit"
description="Have questions or ready to book? Our team is here to assist you. Fill out the form below or reach us directly via phone or Facebook Messenger. We look forward to welcoming you to Australasia Resort Safari Park!"
@@ -85,7 +66,7 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Contact Details & Location"
description="Australasia Resort Safari Park\\\nBalingasao, Bolinao, Pangasinan, Philippines\\\nContact Number: 0960 260 7986\\\nEmail: info@australasiaresort.com (placeholder)\\\nHours: Open Daily 8 AM - 8 PM"
/>
</div>
@@ -93,71 +74,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"},
],
},
]}