64 lines
2.4 KiB
TypeScript
64 lines
2.4 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 { Public_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Jardín & Café Oxígeno | Expertos en Cuidado de Césped y Paisajismo',
|
|
description: 'Jardín & Café Oxígeno ofrece servicios profesionales de jardinería, diseño de paisajes, riego y mantenimiento de jardines en Santo Domingo. ¡Obtén una cotización gratuita hoy mismo!',
|
|
openGraph: {
|
|
"title": "Jardín & Café Oxígeno | Expert Lawn Care & Landscape Services",
|
|
"description": "Jardín & Café Oxígeno offers professional lawn care, landscape design, irrigation, and garden maintenance services in Santo Domingo. Get a free quote today!",
|
|
"url": "https://www.jardincafeoxigeno.com",
|
|
"siteName": "Jardín & Café Oxígeno",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/elegant-stylish-blonde-blogger-woman-posing-near-old-luxury-hotel-house-wearing-white-shorts-blouse-elegant-style_291049-2772.jpg",
|
|
"alt": "Lush green lawn with garden tools"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Jardín & Café Oxígeno | Expert Lawn Care & Landscape Services",
|
|
"description": "Jardín & Café Oxígeno offers professional lawn care, landscape design, irrigation, and garden maintenance services in Santo Domingo. Get a free quote today!",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/elegant-stylish-blonde-blogger-woman-posing-near-old-luxury-hotel-house-wearing-white-shorts-blouse-elegant-style_291049-2772.jpg"
|
|
]
|
|
},
|
|
};
|
|
|
|
const publicSans = Public_Sans({
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${publicSans.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|