Update src/app/about/page.tsx

This commit is contained in:
2026-06-10 06:17:11 +00:00
parent 80836b8e19
commit 22af9a8068

View File

@@ -6,6 +6,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TextAbout from '@/components/sections/about/TextAbout';
import { UserRoundCog, HandSparkles, Tree, Heart } from 'lucide-react';
export default function LandingPage() {
return (
@@ -26,42 +27,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,7 +53,7 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={true}
title="Welcome to Australasia Resort Safari Park"
description="Nestled in the heart of Balingasao, Bolinao, Pangasinan, our resort is a sanctuary where nature's tranquility meets warm Filipino hospitality. Our mission is to provide an unparalleled escape, fostering relaxation, joy, and cherished memories for every guest."
/>
</div>
@@ -80,32 +63,16 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Exceptional Service",
description: "Our dedicated team goes above and beyond to cater to your needs with genuine warmth and efficiency.",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-fun-white-party-with-drinks-by-pool_23-2149485992.jpg",
imageAlt: "Exceptional Service",
buttonIcon: "UserRoundCog",
title: "Exceptional Service", description: "Our dedicated team goes above and beyond to cater to your needs with genuine warmth and efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-fun-white-party-with-drinks-by-pool_23-2149485992.jpg", imageAlt: "Exceptional Service", buttonIcon: UserRoundCog,
},
{
title: "Immaculate Cleanliness",
description: "We maintain the highest standards of hygiene and sanitation across all our facilities for your peace of mind.",
imageSrc: "http://img.b2bpic.net/free-photo/two-beds-with-sea-view_1137-126.jpg",
imageAlt: "Immaculate Cleanliness",
buttonIcon: "HandSparkles",
title: "Immaculate Cleanliness", description: "We maintain the highest standards of hygiene and sanitation across all our facilities for your peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/modern-bathroom-green-glossy-tiles-minimalist-interior_169016-68857.jpg", imageAlt: "Immaculate Cleanliness", buttonIcon: HandSparkles,
},
{
title: "Sustainable Practices",
description: "Committed to preserving our natural environment through eco-friendly operations and initiatives.",
imageSrc: "http://img.b2bpic.net/free-photo/hiker-forest_23-2147683103.jpg",
imageAlt: "Sustainable Practices",
buttonIcon: "Tree",
title: "Sustainable Practices", description: "Committed to preserving our natural environment through eco-friendly operations and initiatives.", imageSrc: "http://img.b2bpic.net/free-photo/hiker-forest_23-2147683103.jpg", imageAlt: "Sustainable Practices", buttonIcon: Tree,
},
{
title: "Community Engagement",
description: "We actively support local communities and businesses, contributing to the region's prosperity.",
imageSrc: "http://img.b2bpic.net/free-photo/couple-drawing-beach-vacation_23-2149369755.jpg",
imageAlt: "Community Engagement",
buttonIcon: "Heart",
title: "Community Engagement", description: "We actively support local communities and businesses, contributing to the region's prosperity.", imageSrc: "http://img.b2bpic.net/free-photo/couple-drawing-beach-vacation_23-2149369755.jpg", imageAlt: "Community Engagement", buttonIcon: Heart,
},
]}
title="Our Commitment to You"
@@ -117,71 +84,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"},
],
},
]}