From dcfa18daa8fe8eca3b6fb5289f94db02be8ab9eb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:19:14 +0000 Subject: [PATCH] Add src/app/guest-reviews/page.tsx --- src/app/guest-reviews/page.tsx | 170 +++++++++++++++++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 src/app/guest-reviews/page.tsx diff --git a/src/app/guest-reviews/page.tsx b/src/app/guest-reviews/page.tsx new file mode 100644 index 0000000..e3bc4fa --- /dev/null +++ b/src/app/guest-reviews/page.tsx @@ -0,0 +1,170 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Star } from "lucide-react"; + +export default function GuestReviewsPage() { + const navItems = [ + { name: "The Villa", id: "#villa" }, + { name: "Experience", id: "#experience" }, + { name: "Location", id: "#location" }, + { name: "Reviews", id: "#reviews" }, + { name: "Guest Reviews", id: "/guest-reviews" }, + { name: "Book Now", id: "#booking" }, + ]; + + return ( + + + +
+
+

Guest Reviews

+

Discover what our guests have to say about their unforgettable experiences at Cretan Dream Villa. Read detailed testimonials from families and groups from around the world.

+
+
+ +
+ +
+ +
+
+

Why Guests Love Us

+
+
+
+ + + + + +
+

Stunning Locations

+

Breathtaking sea views, spacious grounds, and authentic Mediterranean charm that creates unforgettable memories.

+
+
+
+ + + + + +
+

Exceptional Hospitality

+

Our family owners ensure every guest feels welcomed with personalized attention and insider tips for exploring Crete.

+
+
+
+ + + + + +
+

Perfect Amenities

+

Heated pool, multiple bedrooms, spacious living areas, and everything needed for a luxurious family getaway.

+
+
+
+
+ + +
+ ); +} \ No newline at end of file