Files
45c142fd-6105-4e7c-bc6e-5e8…/src/app/layout.tsx
2026-03-26 04:21:08 +00:00

62 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 { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: 'Safe Haven Sitters - Premium House & Pet Sitting Services',
description: 'Experience peace of mind with Safe Haven Sitters. We provide professional, trustworthy, and caring house and pet sitting services for your home and pets while you\'re away.',
keywords: ["house sitting", "pet sitting", "home care", "property management", "trusted sitters", "premium house sitters", "vacation home care", "pet care services"],
openGraph: {
"title": "Safe Haven Sitters - Premium House & Pet Sitting Services", "description": "Experience peace of mind with Safe Haven Sitters. We provide professional, trustworthy, and caring house and pet sitting services for your home and pets while you\'re away.", "url": "https://www.safehavensitters.com", "siteName": "Safe Haven Sitters", "images": [
{
"url": "https://img.b2bpic.net/free-photo/house-interior-modern-room-style_1150-1349.jpg", "alt": "Safe Haven Sitters - Trusted Home Care"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image", "title": "Safe Haven Sitters - Premium House & Pet Sitting Services", "description": "Experience peace of mind with Safe Haven Sitters. We provide professional, trustworthy, and caring house and pet sitting services for your home and pets while you\'re away.", "images": [
"https://img.b2bpic.net/free-photo/house-interior-modern-room-style_1150-1349.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}