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 (
-
-