Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bc6fe781a2 | |||
| 1e0884875c | |||
| 184c88824d | |||
| 8c8153788b | |||
| 47ac988c0f | |||
| d7fc90ddaa | |||
| 138f6ce0f7 |
@@ -1,52 +1,24 @@
|
|||||||
import type { Metadata } from "next";
|
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";
|
import "./globals.css";
|
||||||
|
|
||||||
const archivo = Archivo({
|
const inter = Inter({
|
||||||
variable: "--font-archivo",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "S n S Window Cleaning | Mount Airy, MD Professional Service",
|
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!"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<body className={`${archivo.variable} antialiased`}>
|
<body className={inter.variable}>
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -175,17 +175,6 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="trust-bar" data-section="trust-bar">
|
|
||||||
<MetricCardTen
|
|
||||||
title="Why Choose S n S Window Cleaning"
|
|
||||||
description="Trusted by homeowners throughout Mount Airy and surrounding Maryland areas"
|
|
||||||
metrics={trustMetrics}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardTwentyFive
|
<FeatureCardTwentyFive
|
||||||
title="Our Premium Services"
|
title="Our Premium Services"
|
||||||
|
|||||||
Reference in New Issue
Block a user