|
|
|
|
@@ -1,51 +1,28 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
const geist = Geist({
|
|
|
|
|
variable: "--font-geist-sans", 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 geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Sky Tree Service LLC | Professional Tree Removal in North Doha", description: "24/7 professional tree removal, trimming, and emergency services in North Doha. 4.9★ rated. Fast response, fully insured, women-owned business.", keywords: "tree removal Doha, tree trimming North Doha, emergency tree service Qatar, professional arborist, stump grinding, palm tree maintenance", openGraph: {
|
|
|
|
|
title: "Sky Tree Service LLC | Professional Tree Removal in North Doha", description: "24/7 professional tree removal and maintenance services in Doha. Trusted by 10,000+ customers with 4.9-star rating.", siteName: "Sky Tree Service LLC", type: "website"
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Sky Tree Service LLC | Professional Tree Care in Doha", description: "Emergency tree removal, trimming, and stump grinding. Available 24/7 in North Doha."
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Sky Tree Service - Professional Tree Removal in Doha", description: "24/7 professional tree services in Doha. Tree removal, trimming, emergency service, and stump grinding. Trusted by thousands with 4.9-star rating."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1413,7 +1390,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|