6 Commits

Author SHA1 Message Date
c5667c97ef Update src/app/page.tsx 2026-03-05 08:09:03 +00:00
54be9c7fd9 Update src/app/page.tsx 2026-03-05 08:07:30 +00:00
4e34f893c8 Update src/app/layout.tsx 2026-03-05 08:07:30 +00:00
ad2d893f12 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:05:49 +00:00
8eac204d29 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:04:23 +00:00
361a36a128 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:03:15 +00:00

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: "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."};
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."},
};
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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }