diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0cbca46..3061a01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,24 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/base.css"; +import "./styles/variables.css"; import "./globals.css"; -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "S n S Window Cleaning | Mount Airy, MD Professional Service", - description: "Professional window cleaning, gutter cleaning & pressure washing in Mount Airy, MD. 4.9★ rated, licensed & insured. Free quotes available. Call (410) 562-2698.", - keywords: "window cleaning Mount Airy MD, gutter cleaning, pressure washing, residential cleaning, exterior services", - metadataBase: new URL("https://snswindowcleaning.com"), - alternates: { - canonical: "https://snswindowcleaning.com", - }, - openGraph: { - title: "Crystal Clear Windows. Reliable Service. 100% Satisfaction.", - description: "Professional window cleaning and exterior services in Mount Airy, MD. 4.9★ rated and locally owned.", - siteName: "S n S Window Cleaning", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/man-servant-washing-windows_23-2149530873.jpg", - alt: "Professional window cleaning service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "S n S Window Cleaning - Mount Airy, MD", - description: "Professional window cleaning, gutter services & pressure washing. 4.9★ rated.", - images: ["http://img.b2bpic.net/free-photo/man-servant-washing-windows_23-2149530873.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "S n S Window Cleaning - Professional Cleaning Services in Mount Airy, MD", description: "Professional window cleaning, gutter cleaning, and pressure washing services in Mount Airy, MD. Licensed, insured, and locally owned. 4.9 star rated. Get a free quote today!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - -
+ + {children}