diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 52e371d..a0cd7f1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,37 @@ 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"; +import { DM_Sans } from "next/font/google"; +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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", 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", description: "Professional home services in Richmond, VA"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +