diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c4d5543..17f2137 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,28 @@
import type { Metadata } from "next";
-import { Raleway } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Luxury Renovation & Construction | TBL Contractors LLC", description: "High-end home renovations, deck construction, and repairs with precision execution and clear communication. Trusted by Arlington homeowners.", keywords: "luxury renovation, home remodeling, deck construction, Arlington contractor, precision construction, luxury contractor", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Luxury Renovation & Construction Done Right | TBL Contractors", description: "High-end home renovations with unmatched precision, clean execution, and constant communication.", type: "website", siteName: "TBL Contractors LLC", images: [
- {
- url: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.jpg", alt: "Luxury home renovation project"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Luxury Renovation & Construction | TBL Contractors", description: "Precision construction and luxury renovations for Arlington homeowners.", images: ["http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.jpg"],
- },
-};
+ title: "TBL Contractors - Luxury Renovation & Construction", description: "High-end home renovations, decks, and repairs in Arlington, TX. Licensed, insured, and trusted by homeowners."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-