diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 27c9afc..9de1008 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,4 +1,5 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; @@ -13,7 +14,7 @@ export default function ContactPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="mediumLargeSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" @@ -29,8 +30,7 @@ export default function ContactPage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Book Now", - href: "/contact" + text: "Book Now", href: "/contact" }} /> @@ -46,34 +46,20 @@ export default function ContactPage() { buttonText="Request Booking" inputs={[ { - name: "name", - type: "text", - placeholder: "Full Name", - required: true + name: "name", type: "text", placeholder: "Full Name", required: true }, { - name: "email", - type: "email", - placeholder: "Email Address", - required: true + name: "email", type: "email", placeholder: "Email Address", required: true }, { - name: "phone", - type: "tel", - placeholder: "Phone Number", - required: true + name: "phone", type: "tel", placeholder: "Phone Number", required: true }, { - name: "checkIn", - type: "date", - placeholder: "Check-in Date", - required: true + name: "checkIn", type: "date", placeholder: "Check-in Date", required: true } ]} textarea={{ - name: "message", - placeholder: "Tell us about your preferences and special requests...", - rows: 5, + name: "message", placeholder: "Tell us about your preferences and special requests...", rows: 5, required: false }} onSubmit={(data) => { @@ -109,8 +95,7 @@ export default function ContactPage() { copyrightText="© 2025 Santorini Lux | Luxury Hotel & Resort. All rights reserved." columns={[ { - title: "Explore", - items: [ + title: "Explore", items: [ { label: "Home", href: "/" }, { label: "Rooms & Suites", href: "/rooms" }, { label: "About", href: "/about" }, @@ -118,8 +103,7 @@ export default function ContactPage() { ] }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Reservations", href: "/contact" }, { label: "+30 2286 025000", href: "#" }, { label: "info@santorini-lux.gr", href: "#" }, @@ -127,8 +111,7 @@ export default function ContactPage() { ] }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" },