Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 385ed281b7 | |||
| 804901051d | |||
| 2e209f88fd | |||
| 58b7801d91 | |||
| 200ecab714 | |||
| 1d8c5e090b | |||
| 8afeb52b88 |
@@ -1,45 +1,28 @@
|
||||
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 geistSans = localFont({
|
||||
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
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 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
ratingText="Trusted by New Jersey families"
|
||||
buttons={[
|
||||
{ text: "Request a Quote", href: "#quote" },
|
||||
{ text: "Get Free Quote Today", href: "#quote" },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -199,7 +199,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="What Our Clients Say"
|
||||
description="Real feedback from families and businesses throughout New Jersey who trust us with their homes."
|
||||
description="500+ Happy Customers | 99% Satisfaction Rate — Real feedback from families and businesses throughout New Jersey who trust us with their homes."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Testimonials"
|
||||
@@ -244,4 +244,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user