From 4f18b5ec971e198410c972b7866d5de1ab3b44a7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 00:57:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++++--------------------------------- 1 file changed, 8 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 643e81e..041662d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "J&A Tree Removal - Jacksonville, FL | Professional Tree Services", description: "Expert tree removal, stump removal, and concrete demolition in Jacksonville, FL. 5-star rated service with professional team and fair pricing.", keywords: "tree removal Jacksonville, stump removal, tree trimming, concrete removal, arborist", openGraph: { - title: "J&A Tree Removal - Jacksonville Tree Services", description: "Professional tree removal and stump removal services in Jacksonville, FL. Expert arborists, efficient service, reasonable prices.", url: "https://jandaremoval.com", siteName: "J&A Tree Removal", type: "website"}, - twitter: { - card: "summary_large_image", title: "J&A Tree Removal - Jacksonville", description: "Professional tree removal and stump removal services in Jacksonville, FL"}, -}; + title: "J&A Tree Removal - Professional Tree Services in Jacksonville, FL", description: "Expert tree removal, stump removal, and concrete demolition services in Jacksonville, FL. Fast, professional, and reasonably priced."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}