diff --git a/src/app/page.tsx b/src/app/page.tsx index 57bb80f..528d27b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,7 @@ import ReactLenis from "lenis/react"; import ContactText from '@/components/sections/contact/ContactText'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; @@ -30,26 +30,12 @@ export default function LandingPage() {
@@ -181,63 +101,17 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Ana Marković", - role: "Traveler", - company: "Happy Guest", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/man-standing-green-grass-mountain_501050-863.jpg", - }, - { - id: "2", - name: "John Doe", - role: "Vacationer", - company: "Highly Recommended", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-brunette-woman-enjoying-song-with-eyes-closed-beach-outdoor-shot-winsome-girl-white-headphones-chilling-wild-beach_197531-9016.jpg", - }, - { - id: "3", - name: "Sarah Smith", - role: "Tourist", - company: "Best Place", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/girl-feather-pennisetum_1388-247.jpg", - }, - { - id: "4", - name: "Marco Rossi", - role: "Adventurer", - company: "Comfortable Stay", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-sleeping-outdoors_23-2149435261.jpg", - }, - { - id: "5", - name: "Elena Petrović", - role: "Guest", - company: "Hospitality Excellence", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-standing-near-sea-beach_23-2148103101.jpg", - }, + { id: "1", name: "Ana Marković", role: "Traveler", company: "Happy Guest", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-standing-green-grass-mountain_501050-863.jpg" }, + { id: "2", name: "John Doe", role: "Vacationer", company: "Highly Recommended", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-brunette-woman-enjoying-song-with-eyes-closed-beach-outdoor-shot-winsome-girl-white-headphones-chilling-wild-beach_197531-9016.jpg" }, + { id: "3", name: "Sarah Smith", role: "Tourist", company: "Best Place", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/girl-feather-pennisetum_1388-247.jpg" }, ]} kpiItems={[ - { - value: "4.7", - label: "Avg Rating", - }, - { - value: "20+", - label: "Guest Reviews", - }, - { - value: "100%", - label: "Warm Hospitality", - }, + { value: "4.7", label: "Avg Rating" }, + { value: "20+", label: "Guest Reviews" }, + { value: "100%", label: "Genuine Hospitality" }, ]} title="Guest Testimonials" - description="See why our guests consider us the best place to enjoy your vacation." + description="Real feedback from guests who made Villa Ylliria their holiday home." /> @@ -246,24 +120,12 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} faqs={[ - { - id: "1", - title: "Where is the property located?", - content: "We are located in Donji Štoj, Montenegro (Donji Štoj 85360), in the beautiful Ulcinj region.", - }, - { - id: "2", - title: "How can I book an apartment?", - content: "You can reach out through our contact section to request availability and booking details.", - }, - { - id: "3", - title: "Is the area suitable for families?", - content: "Yes, Donji Štoj is a quiet, family-friendly area perfect for all kinds of travelers seeking relaxation.", - }, + { id: "1", title: "Where is the villa located?", content: "Located in Donji Štoj, Montenegro (Donji Štoj 85360) within the beautiful Ulcinj coastal district." }, + { id: "2", title: "How do I check availability?", content: "Simply submit an inquiry via our contact form or email our concierge team for real-time booking details." }, + { id: "3", title: "Are local attractions accessible?", content: "Yes, our location offers excellent proximity to regional beaches and Ulcinj’s primary coastal spots." }, ]} title="Frequently Asked Questions" - description="Have questions about your stay? We're here to help." + description="Answers to help you plan your stay with us." faqsAnimation="slide-up" /> @@ -271,26 +133,24 @@ export default function LandingPage() {