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
+}
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 (
-
-