Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 804901051d | |||
| 2e209f88fd | |||
| 58b7801d91 | |||
| 200ecab714 | |||
| 1d8c5e090b | |||
| 8afeb52b88 |
@@ -1,45 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Raleway } from "next/font/google";
|
import localFont from "next/font/local";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
const geistSans = localFont({
|
||||||
variable: "--font-raleway", subsets: ["latin"],
|
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"
|
||||||
});
|
});
|
||||||
|
const geistMono = localFont({
|
||||||
const halant = Halant({
|
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: "Create Next App", description: "Generated by create next app"
|
||||||
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."},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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">
|
||||||
<ServiceWrapper>
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1407,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ export default function LandingPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
ratingText="Trusted by New Jersey families"
|
ratingText="Trusted by New Jersey families"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request a Quote", href: "#quote" },
|
{ text: "Get Free Quote Today", href: "#quote" },
|
||||||
{ text: "Learn More", href: "#services" }
|
{ text: "Learn More", href: "#services" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -199,7 +199,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
title="What Our Clients Say"
|
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"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="Testimonials"
|
tag="Testimonials"
|
||||||
@@ -244,4 +244,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user