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}