From 4b5fe26d46740e27469e68b9b0f51ed38d11e78b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:32:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b3c6c0b..d27ef08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Libre_Baskerville, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Empire Roofing & Construction | Missouri Experts', - description: 'Professional roof repairs, insurance claims, and replacements in Springfield, Ozark, and Nixa, MO. Built like an empire, protected for life.', + title: 'Empire Roofing - Missouri\'s Most Trusted Experts', + description: 'Professional roofing services for Missouri homeowners, offering inspection, repair, and full replacements with insurance claims assistance.', openGraph: { "title": "Empire Roofing & Construction", "description": "Missouri's Most Trusted Roofing Experts.", -- 2.49.1 From 5aaf2500f8b69968eb928910ae42cd5a5fb20dd9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:32:43 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d0f44fa..f73e6b3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,13 +7,22 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]; +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Contact", id: "/contact" } +]; export default function Home() { return (
-- 2.49.1