diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8070da6..52e371d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,36 +1,1433 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +import { Mulish } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; + +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + variable: "--font-inter", + subsets: ["latin"], +}); + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], }); export const metadata: Metadata = { - title: "Earl Boys Services - Professional Home Services in Richmond VA", description: "Earl Boys Services offers professional home services including plumbing, electrical, painting, and general maintenance in Richmond, VA and surrounding areas."}; + title: "Earl Boys Services - Professional Home Services in Richmond, VA", + description: "Expert home services in Richmond, VA. Plumbing, painting, electrical, flooring & more. 15 years trusted service. Call 804-938-0669 for free estimates.", + keywords: "home services Richmond VA, plumbing, painting, electrical, home repair, maintenance", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Earl Boys Services - Home Services in Richmond, VA", + description: "Professional home services including plumbing, painting, electrical, flooring & more.", + type: "website", + siteName: "Earl Boys Services LLC", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg", + alt: "Earl Boys Services - Professional Home Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Earl Boys Services - Home Services in Richmond, VA", + description: "Professional home services including plumbing, painting, electrical, flooring & more. Call 804-938-0669", + images: ["http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg"], + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +