From 9e9383c9e5c4051f2157540c435f36e7c8c371bb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:42:17 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6df5269..1ef5815 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -29,9 +29,9 @@ export default function ContactPage() { navItems={[ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, - { name: "Projects", id: "/projects" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Projects", id: "projects" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, ]} button={{ text: "Get a Quote", href: "/contact"}} @@ -138,4 +138,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 75ea2215c806736ec2e09b16a9ba44ee1e19c228 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:42:17 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 66 +++++----------------------------------------- 1 file changed, 6 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bdf8b2e..a0fb32b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,16 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "AR Metal Buildings - Custom Metal Building Construction West Texas", - description: "Expert metal building construction for shops, barns, and agricultural structures across West Texas. High-quality, competitive pricing, trusted crews. Get your free quote today!", - keywords: "metal buildings Texas, steel shop builders, custom metal buildings, barn construction, West Texas metal buildings, agricultural structures", - metadataBase: new URL("https://armetalbuildings.com"), - alternates: { - canonical: "https://armetalbuildings.com", - }, - openGraph: { - title: "AR Metal Buildings - Custom Metal Building Construction", - description: "High-quality metal buildings built to last. Expert construction for shops, barns, and agricultural structures across West Texas.", - url: "https://armetalbuildings.com", - siteName: "AR Metal Buildings", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg", - alt: "AR Metal Buildings - Professional Metal Construction", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AR Metal Buildings - Custom Metal Building Construction", - description: "Expert metal building construction for West Texas. Shops, barns, agricultural structures.", - images: [ - "http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AR Metal Buildings", description: "Custom metal building construction across West Texas"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}