Update src/app/layout.tsx

This commit is contained in:
2026-03-06 10:55:01 +00:00
parent f8226d4946
commit 9f0ce00df3

View File

@@ -1,53 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Professional Security & Cleaning Services | SecureClean Pro", description: "24/7 security monitoring and expert commercial cleaning services. Trusted by 500+ clients. Free consultation today.", keywords: "security services, commercial cleaning, facility management, 24/7 surveillance, janitorial services", metadataBase: new URL("https://securecleanpro.com"),
alternates: {
canonical: "https://securecleanpro.com"},
openGraph: {
title: "Professional Security & Cleaning Services", description: "Comprehensive security solutions and cleaning services for businesses and properties.", url: "https://securecleanpro.com", siteName: "SecureClean Pro", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/team-leader-following-delivery-truck-through-urban-traffic_482257-94095.jpg", alt: "Professional security and cleaning services"},
],
},
twitter: {
card: "summary_large_image", title: "SecureClean Pro - Security & Cleaning Services", description: "24/7 security monitoring and expert commercial cleaning", images: ["http://img.b2bpic.net/free-photo/team-leader-following-delivery-truck-through-urban-traffic_482257-94095.jpg"],
},
};
title: "SecureClean Pro - Security & Cleaning Services", description: "Professional security monitoring and commercial cleaning services for businesses and homes. 24/7 surveillance, expert cleaning teams, and biohazard remediation."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}