Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b1e4fe72e0 | |||
| 180ea5a61f | |||
| d59cb0e596 | |||
| dd0d37cd0e | |||
| f8a5f7780c | |||
| 2bd0728945 |
@@ -1,51 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 - 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."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -97,7 +97,8 @@ export default function LandingPage() {
|
|||||||
description="Sky Tree Service LLC combines professional expertise, cutting-edge equipment, and unparalleled customer service. We're women-owned, fully insured, and committed to the safety of your property and our team. With years of experience serving Doha residents, we deliver exceptional results every time."
|
description="Sky Tree Service LLC combines professional expertise, cutting-edge equipment, and unparalleled customer service. We're women-owned, fully insured, and committed to the safety of your property and our team. With years of experience serving Doha residents, we deliver exceptional results every time."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "4.9★", title: "Customer Rating (70+ Reviews)" },
|
{ value: "4.9★", title: "Customer Rating (70+ Reviews)" },
|
||||||
{ value: "24/7", title: "Always Available for Emergencies" }
|
{ value: "24/7", title: "Always Available for Emergencies" },
|
||||||
|
{ value: "15+", title: "Years of Industry Experience" }
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/employees-with-masks-working-warehouse_23-2148923092.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/employees-with-masks-working-warehouse_23-2148923092.jpg"
|
||||||
imageAlt="Professional tree service team"
|
imageAlt="Professional tree service team"
|
||||||
|
|||||||
Reference in New Issue
Block a user