74 lines
2.5 KiB
TypeScript
74 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Mulish } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'BNB Landscaping | Miami\'s Premier Landscaping Services',
|
|
description: 'BNB Landscaping offers expert lawn care, tree services, and custom landscape design in Miami, FL. Transform your outdoor space with our professional team. Get a free estimate!',
|
|
keywords: ["landscaping Miami, lawn care, tree removal, garden design, outdoor living, Miami landscaper, landscape maintenance"],
|
|
openGraph: {
|
|
"title": "BNB Landscaping | Miami's Premier Landscaping Services",
|
|
"description": "BNB Landscaping offers expert lawn care, tree services, and custom landscape design in Miami, FL. Transform your outdoor space with our professional team. Get a free estimate!",
|
|
"url": "https://www.bnblanscaping.com",
|
|
"siteName": "BNB Landscaping",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/long-corridor-showcase_1127-3442.jpg",
|
|
"alt": "Luxurious garden design with waterfall and lush plants."
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "BNB Landscaping | Miami's Premier Landscaping Services",
|
|
"description": "BNB Landscaping offers expert lawn care, tree services, and custom landscape design in Miami, FL. Transform your outdoor space with our professional team. Get a free estimate!",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/long-corridor-showcase_1127-3442.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const mulish = Mulish({
|
|
variable: "--font-mulish",
|
|
subsets: ["latin"],
|
|
});
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|