Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 08:07:35 +00:00
2 changed files with 9 additions and 32 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Apartment Cleaning & Unit Turns DallasFort Worth | Bradley's", description: "Professional apartment unit turn and move-out cleaning services for DallasFort Worth. Insured, reliable cleaning for property managers and homeowners. Free quote today.", keywords: "apartment cleaning Dallas, move-out cleaning DFW, apartment unit turns, property manager cleaning services, apartment turnover cleaning, residential cleaning Dallas Fort Worth", openGraph: {
title: "Apartment Unit Turns & Move-Out Cleaning in DallasFort Worth", description: "Professional, insured cleaning services for apartment complexes and residential properties. Fast turnaround, trusted by property managers.", siteName: "Bradley's Cleaning Service", type: "website"},
twitter: {
card: "summary_large_image", title: "Apartment Cleaning Services DallasFort Worth", description: "Unit turns, move-out cleaning, and recurring services. Call 945-201-1732 for free quote."},
};
title: "Bradley's Cleaning Service | DFW Apartment & Move-Out Cleaning", description: "Professional apartment unit turn and move-out cleaning services in Dallas-Fort Worth. Fast turnaround, insured, detail-oriented. Free quote available."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -221,6 +221,9 @@ export default function LandingPage() {
inputPlaceholder="Enter your email"
buttonText="Get Free Quote"
termsText="We respect your privacy. We'll contact you within 24 hours to discuss your cleaning needs."
buttons={[
{ text: "Call Now: 945-201-1732", href: "tel:945-201-1732" }
]}
/>
</div>