Update src/app/page.tsx

This commit is contained in:
2026-06-01 17:28:14 +00:00
parent 2433e6cb3e
commit 5ba6944402

View File

@@ -12,16 +12,16 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Sparkles, Award } from "lucide-react";
// Updated navItems for both pages to include the new booking link
// Updated navItems for both pages to include the new booking link and about page link
const updatedNavItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "About", id: "/about" }, // Changed from #about to /about
{ name: "Services", id: "#services" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Email Updates", id: "#contact" },
{ name: "Book Appointment", id: "/book-appointment" } // Added new nav item
{ name: "Book Appointment", id: "/book-appointment" }
];
export default function LandingPage() {
@@ -72,7 +72,7 @@ export default function LandingPage() {
{ type: "text", content: "About Nail Point: Your Premier Destination for Nail Care" }
]}
buttons={[
{ text: "Learn More", href: "#services" }
{ text: "Learn More", href: "/about" }
]}
useInvertedBackground={true}
/>
@@ -164,7 +164,7 @@ export default function LandingPage() {
logoText="Nail Point"
columns={[
{ title: "Services", items: [{ label: "Manicures", href: "#services" }, { label: "Pedicures", href: "#services" }, { label: "Nail Enhancements", href: "#services" }, { label: "Waxing", href: "#services" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Pricing", href: "#pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/about" }, { label: "Pricing", href: "#pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }] },
{ title: "Connect", items: [{ label: "Book Now", href: "/book-appointment" }, { label: "Email Us", href: "mailto:info@nailpoint.com" }, { label: "Call Us", href: "tel:+1234567890" }, { label: "Directions", href: "https://maps.google.com/?q=Nail%20Point%20Salon" }] }
]}
copyrightText="© 2024 Nail Point. All rights reserved."
@@ -172,4 +172,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}