From 4fa516f3e6d6b784c27e24c44032a27be658c380 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:22:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 28bdef0..4620f3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}