7 Commits

Author SHA1 Message Date
385ed281b7 Merge version_5 into main
Merge version_5 into main
2026-03-05 00:52:50 +00:00
804901051d Update src/app/page.tsx 2026-03-05 00:52:46 +00:00
2e209f88fd Update src/app/layout.tsx 2026-03-05 00:52:46 +00:00
58b7801d91 Merge version_4 into main
Merge version_4 into main
2026-03-05 00:50:44 +00:00
200ecab714 Update src/app/page.tsx 2026-03-05 00:50:40 +00:00
1d8c5e090b Update src/app/layout.tsx 2026-03-05 00:50:39 +00:00
8afeb52b88 Merge version_3 into main
Merge version_3 into main
2026-03-05 00:48:02 +00:00
2 changed files with 15 additions and 33 deletions

View File

@@ -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>
);
}

View File

@@ -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>
);
}
}