Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-05 21:22:59 +00:00
2 changed files with 10 additions and 42 deletions

View File

@@ -1,54 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Professional Cleaning Services - droppedIT", description: "Expert residential and commercial cleaning services. Professional cleaners, eco-friendly products, flexible scheduling. Get your free quote today!", keywords: "cleaning services, professional cleaners, residential cleaning, commercial cleaning, carpet cleaning, home cleaning", openGraph: {
title: "Professional Cleaning Services - droppedIT", description: "Expert residential and commercial cleaning services with eco-friendly products and flexible scheduling.", siteName: "droppedIT", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-latin-man-cleaning-home_58466-11235.jpg", alt: "Professional cleaning service"},
],
},
twitter: {
card: "summary_large_image", title: "Professional Cleaning Services - droppedIT", description: "Expert residential and commercial cleaning services with eco-friendly products and flexible scheduling.", images: ["http://img.b2bpic.net/free-photo/young-latin-man-cleaning-home_58466-11235.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "droppedIT | Professional Cleaning Services", description: "Professional cleaning services that transform your space. Reliable, efficient, and affordable."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -194,7 +194,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Ready to Get Your Space Cleaned?"
ctaDescription="Schedule your professional cleaning service today and experience the droppedIT difference."
ctaDescription="100% Satisfaction Guarantee | Free Quote in 5 Minutes | Schedule your professional cleaning service today."
ctaButton={{ text: "Book Your Service", href: "https://calendly.com" }}
ctaIcon={Calendar}
useInvertedBackground={false}