diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index d3cb2d1..7711c79 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,17 +1,17 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import ContactSplit from '@/components/sections/contact/ContactSplit';
-import FooterCard from '@/components/sections/footer/FooterCard';
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import ContactSplit from "@/components/sections/contact/ContactSplit";
+import FooterCard from "@/components/sections/footer/FooterCard";
import { Phone, Facebook, Instagram, Linkedin, Twitter } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "About", id: "about" },
- { name: "Services", id: "services" },
- { name: "Gallery", id: "gallery" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
+ { name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
];
@@ -61,7 +61,7 @@ export default function ContactPage() {
tagIcon={Phone}
title="Ready to Book Your Event?"
description="Contact our team today to discuss your event requirements. We're here to make your vision a reality."
- background={{ variant: "sparkles-gradient" }}
+ background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/elegant-wedding-reception-room-with-sea-view-through-windows_637285-8612.jpg?_wi=5"
imageAlt="Contact us at Elegance Events Centre"
diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
index 1d2b2a4..6b71eb3 100644
--- a/src/app/gallery/page.tsx
+++ b/src/app/gallery/page.tsx
@@ -10,15 +10,6 @@ import Link from "next/link";
import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react";
export default function GalleryPage() {
- const navItems = [
- { name: "Home", id: "/" },
- { name: "About", id: "/about" },
- { name: "Services", id: "/services" },
- { name: "Gallery", id: "/gallery" },
- { name: "Pricing", id: "/pricing" },
- { name: "Contact", id: "/contact" },
- ];
-
return (
@@ -57,7 +48,7 @@ export default function HomePage() {
imageSrc="http://img.b2bpic.net/free-photo/elegant-wedding-reception-room-with-sea-view-through-windows_637285-8612.jpg?_wi=1"
imageAlt="Luxury ballroom with elegant chandeliers"
mediaAnimation="slide-up"
- background={{ variant: "glowing-orb" }}
+ background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
testimonials={[
{
@@ -74,7 +65,7 @@ export default function HomePage() {
{
text: "Book Your Event", href: "/contact"},
{
- text: "Explore Services", href: "services"},
+ text: "Explore Services", href: "/services"},
]}
buttonAnimation="slide-up"
imagePosition="right"
@@ -89,7 +80,7 @@ export default function HomePage() {
description="Your Vision, Our Expertise"
subdescription="With over 15 years of experience hosting thousands of successful events"
icon={Star}
- imageSrc="http://img.b2bpic.net/free-photo/new-clean-luxury-restaurant-european-style-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18743.jpg"
+ imageSrc="http://img.b2bpic.net/free-photo/new-clean-luxury-restaurant-european-style-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18743.jpg?_wi=1"
imageAlt="Elegant event centre interior"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -107,11 +98,11 @@ export default function HomePage() {
features={[
{
title: "Professional Catering", description: "Exquisite culinary experiences with gourmet cuisine and professional service staff", imageSrc: "http://img.b2bpic.net/free-photo/side-dish-with-peppers-grated-cheese-greens_141793-949.jpg?_wi=1", imageAlt: "Luxury catering service", button: {
- text: "Learn More", href: "services"},
+ text: "Learn More", href: "/services"},
},
{
title: "Expert Decorations", description: "Stunning floral arrangements and elegant decorations to transform your venue", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-wedding-table-arrangement_23-2149436421.jpg?_wi=1", imageAlt: "Professional event decoration", button: {
- text: "View Gallery", href: "gallery"},
+ text: "View Gallery", href: "/gallery"},
},
{
title: "Event Coordination", description: "Dedicated coordinators managing every detail for seamless execution", imageSrc: "http://img.b2bpic.net/free-photo/mature-blonde-business-woman-work_23-2149100294.jpg?_wi=1", imageAlt: "Professional event coordinator", button: {
@@ -119,7 +110,7 @@ export default function HomePage() {
},
{
title: "Advanced Technology", description: "State-of-the-art audiovisual, sound, and lighting systems", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-making-music-home_23-2149849401.jpg?_wi=1", imageAlt: "Modern event technology setup", button: {
- text: "Explore", href: "services"},
+ text: "Explore", href: "/services"},
},
]}
gridVariant="two-columns-alternating-heights"
@@ -211,10 +202,9 @@ export default function HomePage() {