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