diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index d3f2194..4a468f0 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -28,9 +28,7 @@ export default function AboutPage() {
navItems={[
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
- { name: "Featured", id: "/" },
- { name: "Contact", id: "/contact" },
- { name: "Shop", id: "/" }
+ { name: "Contact", id: "/contact" }
]}
/>
diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx
index 97610ad..cc39966 100644
--- a/src/app/collections/page.tsx
+++ b/src/app/collections/page.tsx
@@ -27,11 +27,9 @@ export default function CollectionsPage() {
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 2606666..3997241 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -5,7 +5,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ContactCTA from '@/components/sections/contact/ContactCTA';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
-import { Mail, Phone, MapPin } from 'lucide-react';
+import { Mail } from 'lucide-react';
export default function ContactPage() {
return (
@@ -27,9 +27,7 @@ export default function ContactPage() {
navItems={[
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
- { name: "Featured", id: "/" },
- { name: "Contact", id: "/contact" },
- { name: "Shop", id: "/" }
+ { name: "Contact", id: "/contact" }
]}
/>
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f6e0605..91a9a88 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,6 +11,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Watch, Sparkles, Award, Mail } from 'lucide-react';
+import Link from 'next/link';
export default function HomePage() {
return (
@@ -30,11 +31,9 @@ export default function HomePage() {
@@ -67,7 +66,7 @@ export default function HomePage() {
]}
buttons={[
{ text: "Browse Collection", href: "/collections" },
- { text: "Schedule Consultation", href: "/contact" }
+ { text: "Schedule Consultation", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
@@ -167,7 +166,7 @@ export default function HomePage() {
]
},
{
- id: "exclusive", title: "Exclusive Luxury", price: "$30,000+", period: "Prestige Line", imageSrc: "http://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg", imageAlt: "Exclusive Luxury Watches", button: { text: "Contact", href: "/contact" },
+ id: "exclusive", title: "Exclusive Luxury", price: "$30,000+", period: "Prestige Line", imageSrc: "http://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg", imageAlt: "Exclusive Luxury Watches", button: { text: "Contact", href: "#contact" },
features: [
"Ultra-rare vintage pieces", "Museum-quality examples", "Personal concierge service", "Bespoke sourcing available", "Lifetime authentication"
]