diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 52e371d..8070da6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,36 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - 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"], - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}