|
|
|
|
@@ -1,45 +1,25 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Raleway } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import localFont from "next/font/local";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const raleway = Raleway({
|
|
|
|
|
variable: "--font-raleway", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const geistSans = localFont({
|
|
|
|
|
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
|
|
|
|
|
const geistMono = localFont({
|
|
|
|
|
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Professional House Cleaning Services - Magalys Reyes | South Jersey", description: "Expert house cleaning services in South Jersey. From deep cleaning to move-out services. Professional team serving all of South Jersey. Request your free quote today!", keywords: "house cleaning South Jersey, professional cleaning, move-out cleaning, realtor cleaning services, deep cleaning", openGraph: {
|
|
|
|
|
title: "Professional House Cleaning Services - Magalys Reyes", description: "Expert house cleaning services serving all of South Jersey. Deep cleaning, regular maintenance, and realtor programs.", url: "https://magalysreyes.com", siteName: "Magalys Reyes House Cleaning", type: "website"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Professional House Cleaning Services - South Jersey", description: "Expert cleaning solutions from Magalys Reyes. Serving all of South Jersey with professional, trustworthy service."},
|
|
|
|
|
};
|
|
|
|
|
title: "Create Next App", description: "Generated by create next app"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1407,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|