diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 21bad00..b7c68fe 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,20 @@
import type { Metadata } from "next";
-import { Raleway } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Elite Services - Trading, Cleaning & Moving Solutions", description: "Premium business services including professional trading, expert cleaning, and seamless moving solutions. Trust Elite Services for excellence.", keywords: "trading services, professional cleaning, moving company, business services, relocation", openGraph: {
- title: "Elite Services - Business Excellence", description: "Comprehensive trading, cleaning, and moving services for businesses", type: "website", siteName: "Elite Services"},
- twitter: {
- card: "summary_large_image", title: "Elite Services - Business Solutions", description: "Trading, cleaning, and moving services"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Elite Services - Trading, Cleaning & Moving Solutions", description: "Premium business services with 10+ years of trusted expertise. Proven results for 500+ businesses. Trading solutions, professional cleaning, and seamless moving."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-