From 75356af34f535269501c73d640a52d93e41611ce Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:05:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- 2.49.1 From e0a3fee241d15a9c585f601444bd560aacc26c29 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:05:19 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) 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() { -- 2.49.1