diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 034e898..2f34306 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -19,7 +19,8 @@ export const metadata: Metadata = { ], }, twitter: { - card: "summary_large_image", title: "LocalPro Services - Trusted Local Provider", description: "Professional services you can trust. Free quotes, same-day availability.", images: ["http://img.b2bpic.net/free-photo/happy-manual-worker-presenting-results-business-development-while-giving-presentation-company-leaders-his-team-factory_637285-4144.jpg"], + card: "summary_large_image", title: "LocalPro Services - Trusted Local Provider", description: "Professional services you can trust. Free quotes, same-day availability.", images: [ + "http://img.b2bpic.net/free-photo/happy-manual-worker-presenting-results-business-development-while-giving-presentation-company-leaders-his-team-factory_637285-4144.jpg"], }, robots: { index: true, diff --git a/src/app/page.tsx b/src/app/page.tsx index 486fbfc..c85af38 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,25 +13,25 @@ import { Star, Award, Shield, Users } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Home", id: "#" }, + { name: "Services", id: "#services" }, + { name: "About", id: "#metrics" }, + { name: "Contact", id: "#cta-section" }, ]; const footerColumns = [ { title: "Services", items: [ - { label: "Service One", href: "/services" }, - { label: "Service Two", href: "/services" }, - { label: "Service Three", href: "/services" }, - { label: "Emergency Service", href: "/contact" }, + { label: "Service One", href: "#services" }, + { label: "Service Two", href: "#services" }, + { label: "Service Three", href: "#services" }, + { label: "Emergency Service", href: "#cta-section" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "/about" }, - { label: "Contact", href: "/contact" }, + { label: "About Us", href: "#metrics" }, + { label: "Contact", href: "#cta-section" }, { label: "Service Area", href: "#" }, { label: "FAQ", href: "#" }, ], @@ -63,10 +63,7 @@ export default function HomePage() {