diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c4ae23f..8ba8ab6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}