diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6ba526c..d96dc75 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactText from '@/components/sections/contact/ContactText';
-import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
-import FooterCard from '@/components/sections/footer/FooterCard';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
+import FooterBase from '@/components/sections/footer/FooterBase';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import ProductCardThree from '@/components/sections/product/ProductCardThree';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
-import { Facebook, Home, Instagram } from "lucide-react";
+import { Home, MapPin, User, Mail, Phone, Instagram, Facebook } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,22 +30,11 @@ export default function LandingPage() {
@@ -56,14 +45,8 @@ export default function LandingPage() {
title="A Quiet Luxury Escape in the Heart of Laganas"
description="Just 2 minutes from the beach. Surrounded by beauty. Designed for peace."
buttons={[
- {
- text: "Book Your Stay",
- href: "#contact",
- },
- {
- text: "Explore the Villa",
- href: "#about",
- },
+ { text: "Book Your Stay", href: "#contact" },
+ { text: "Explore the Villa", href: "#about" },
]}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-santorini-garden_23-2151977279.jpg"
imageAlt="Luxury villa terrace garden sunlight"
@@ -86,73 +69,35 @@ export default function LandingPage() {
-
@@ -162,93 +107,45 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="bento-grid"
useInvertedBackground={false}
- testimonials={[
- {
- id: "t1",
- name: "Sarah Johnson",
- role: "Guest",
- company: "UK",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/patio-balcony-with-chair-around-sea-ocean-view_74190-6864.jpg",
- },
- {
- id: "t2",
- name: "Michael Chen",
- role: "Guest",
- company: "USA",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-pajama-moving-balcony-city-sunny-morning-her-long-hair-flying-wind-she-smiling_197531-2305.jpg",
- },
- {
- id: "t3",
- name: "Emily Rodriguez",
- role: "Guest",
- company: "Spain",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-natural-makeup-wear-fashion-clothes-casual-black-white-dress-code-office-style-total-blouse-pants-suit-hat_627829-1575.jpg",
- },
- {
- id: "t4",
- name: "David Kim",
- role: "Guest",
- company: "Germany",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-furniture-house-deck-with-vegetation_23-2150698284.jpg",
- },
- ]}
title="Guests Don’t Just Stay — They Come Back"
description="Hear what our wonderful guests have to say about their time at Villa Daizy."
+ testimonials={[
+ { id: "t1", name: "Sarah Johnson", role: "Guest", company: "UK", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/patio-balcony-with-chair-around-sea-ocean-view_74190-6864.jpg" },
+ { id: "t2", name: "Michael Chen", role: "Guest", company: "USA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-pajama-moving-balcony-city-sunny-morning-her-long-hair-flying-wind-she-smiling_197531-2305.jpg" },
+ ]}
/>
-