diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 95e19c5..8c886a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Boston Roofing Specialists - 5-Star Rated Contractor", - description: "Expert roofing contractor in Boston, MA. Roof installation, repairs, flat roofing, and commercial solutions. 5-star rated with 24/7 emergency service. Call (617) 749-0544.", - keywords: "roofing contractor Boston, roof repair Boston MA, flat roof installation, emergency roof repair, residential roofing, commercial roofing Boston", - metadataBase: new URL("https://bostonroofingspecialists.com"), - alternates: { - canonical: "https://bostonroofingspecialists.com", - }, - openGraph: { - title: "Boston Roofing Specialists - 5-Star Roofing Contractor", - description: "Professional roofing services in Boston. Installation, repairs, flat roofing & commercial solutions. 24/7 emergency service.", - siteName: "Boston Roofing Specialists", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets_23-2149343655.jpg", - alt: "Boston Roofing Specialists - Expert Installation", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Boston Roofing Specialists", - description: "5-Star Rated Roofing Contractor. Expert installation, repairs & emergency service.", - images: ["http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets_23-2149343655.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Boston Roofing Specialists", description: "Expert roofing services in Boston"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}